## [1] "!! high !! The experiment investigate the effects of two disturbance levels: low and high. To make it easier to interpet, we showcase only one of the two disturbance levels. In this document we showcase only the high disturbance)"
Ecosystem size is a key factor driving biodiversity and ecosystem function. Larger ecosystems contain more species and can be hubs of dispersal and resource flows in networks of multiple ecosystems. However, whether and how ecosystem size and resource flows interact to affect biodiversity and ecosystem function has been largely overlooked. Here, we investigated how ecosystem size asymmetry affects biodiversity and function of two-patch meta-ecosystems connected through flows of non-living resources. We conducted microcosm experiments, mimicking resource flows between ecosystems of different sizes, yet otherwise being identical. We found that meta-ecosystems with asymmetric ecosystem sizes had higher β-diversity but lower α-diversity and ecosystem function (total biomass) than their unconnected counterparts, while such an effect was not found for meta-ecosystems of identical patch sizes. Our work demonstrates of how cross-ecosystem dynamics modulated by differences in patch sizes affect biodiversity and function, with a direct implication for conservation and management of connected ecosystems.
Parameters for R markdown and the general running of the code.
start_time = Sys.time()
knitr::opts_chunk$set(message = FALSE,
cache = FALSE,
autodep = FALSE)
recompute_lengthy_analyses = FALSE
Parameters related to resource flows.
disturbance_levels = c("low", "high")
n_disturbance_levels = length(disturbance_levels)
resource_flow_days = c(5, 9, 13, 17, 21, 25)
first_resource_flow = resource_flow_days[1]
Parameters related to sampling.
total_frames = 125
volume_recorded_μl = 34.4
time_points = 0:7
time_points_without_t0 = 1:7
time_point_names = c("t0", "t1", "t2", "t3", "t4", "t5", "t6", "t7")
sampling_days = c(0, 4, 8, 12, 16, 20, 24, 28)
first_time_point = 0
last_time_point = length(sampling_days) - 1
n_time_points = last_time_point + 1
nr_videos = c(12, 1, 1, 1, 1, 1, 2, 2) #Videos taken for each time point for each culture. At t0 we took 12 videos of the large bottle from which we started the cultures. Write why 2 at the end.
videos_taken = data.frame(time_point = 0 : 7,
nr_videos = c(12, 1, 1, 1, 1, 1, 2, 2))
n_videos_taken_t0 = nr_videos[1]
time_point_day = data.frame(time_point = first_time_point:last_time_point,
day = sampling_days,
video_replicates = nr_videos)
videos_to_take_off = data.frame(culture_ID = NA,
time_point = NA,
file = NA) %>%
add_row(culture_ID = 137-110,
time_point = 7,
file = 137) %>%
slice(-1)
n_cultures = 110
total_number_of_video_rows = sum(nr_videos * n_cultures)
Parameters related to protists.
protist_species = c("Ble", "Cep", "Col", "Eug", "Eup", "Lox", "Pau", "Pca", "Spi", "Spi_te", "Tet")
protist_species_indiv_per_volume = paste0(protist_species, "_indiv_per_volume")
protist_species_indiv_per_ml = paste0(protist_species, "_indiv_per_ml")
protist_species_dominance = paste0(protist_species_indiv_per_ml, "_dominance")
protist_species_total = paste0(protist_species, "_tot_indiv")
n_protist_species = length(protist_species)
first_protist = protist_species[1]
last_protist = protist_species[n_protist_species]
species_IDD_with_13_threshold = c("Col", "Eug", "Eup", "Lox", "Pau", "Pca", "Spi_te", "Tet")
species_IDD_with_13_threshold_indiv_per_volume = paste0(species_IDD_with_13_threshold, "_indiv_per_volume")
species_IDD_with_40_threshold = c("Ble", "Cep", "Spi")
species_IDD_with_40_threshold_indiv_per_volume = paste0(species_IDD_with_40_threshold, "_indiv_per_volume")
Parameters related to patches.
patches_to_take_off = 60 #Culture ID = 60 as it was spilled (small unconnected, high disturbance, system nr = 40)
culture_info = read.csv(here("2_data", "culture_info.csv"), header = TRUE)
columns_patches = c("time_point",
"day",
"culture_ID",
"system_nr",
"disturbance",
"patch_type",
"patch_size",
"patch_size_ml",
"size_connected_patch",
"metaecosystem",
"metaecosystem_type")
columns_treatments = columns_patches[!columns_patches %in% c("system_nr", "culture_ID")]
variables_patches = c("bioarea_mm2_per_ml",
"bioarea_tot_mm2",
"indiv_per_ml",
"indiv_tot",
"species_richness",
"shannon",
"simpson",
"inv_simpson",
"evenness_pielou",
"median_body_area_µm2",
paste0(protist_species, "_indiv_per_ml"),
paste0(protist_species, "_tot_indiv"),
paste0(protist_species_indiv_per_ml, "_dominance"))
baseline_columns = paste0("baseline_", variables_patches)
patch_types_ordered = c("Small connected to large",
"Small connected to small",
"Small unconnected",
"Medium connected to medium",
"Medium unconnected",
"Large connected to small",
"Large connected to large",
"Large unconnected")
treatments_and_controls = data.frame(treatment = c("Small connected to small",
"Small connected to large",
"Medium connected to medium",
"Large connected to large",
"Large connected to small"),
control = c("Small unconnected",
"Small unconnected",
"Medium unconnected",
"Large unconnected",
"Large unconnected"))
n_treatments = length(unique(treatments_and_controls$treatment))
n_controls = length(unique(treatments_and_controls$control))
n_replicates = 5
n_patch_types = 8
Parameters related to size classes.
n_size_classes = 12
columns_classes = c(columns_patches,
"size_class_n",
"mean_class_area_µm2")
Parameters related to meta-ecosystems.
metaecosystems_to_take_off = culture_info %>%
filter(culture_ID %in% patches_to_take_off) %>%
pull(system_nr) %>%
unique
system_nr_metaecosystems = culture_info %>%
filter(metaecosystem == "yes") %>%
pull(system_nr) %>%
unique
n_metaecosystems = length(system_nr_metaecosystems)
variables_metaecos = c(
"total_metaecosystem_bioarea_mm2",
"jaccard_index",
"bray_curtis",
"beta_spatial_turnover",
"beta_nestedness",
"beta_total",
"metaecosystem_richness")
metaecosystem_types_ordered = c(
"Small-Small meta-ecosystem",
"Medium-Medium meta-ecosystem",
"Medium-Medium unconnected",
"Large-Large meta-ecosystem",
"Small-Large meta-ecosystem",
"Small-Large unconnected")
Name of the axes per response variable.
axis_names = data.frame(variable = NA,
axis_name= NA) %>%
add_row(variable = "day", axis_name = "Time (day)") %>%
add_row(variable = "patch_size_ml", axis_name = "Patch size (ml)") %>%
add_row(variable = "log_size_class", axis_name = "Log size (μm2)") %>%
add_row(variable = "class_indiv_per_µl", axis_name = "Density (ind/ml)") %>%
add_row(variable = "bioarea_mm2_per_ml", axis_name = "Biomass (mm2/ml)") %>%
add_row(variable = "bioarea_mm2_per_ml_d", axis_name = "Bioamass ES") %>%
add_row(variable = "bioarea_tot", axis_name = "Total Biomass (mm2)") %>%
add_row(variable = "total_metaecosystem_bioarea_mm2", axis_name = "Total Biomass (mm2)") %>%
add_row(variable = "species_richness", axis_name = "Species Richness") %>%
add_row(variable = "species_richness_d", axis_name = "Species Richness ES") %>%
add_row(variable = "mean_richness", axis_name = "Mean α-Diversity (Shannon)") %>%
add_row(variable = "mean_shannon", axis_name = "Mean α-Diversity (Shannon)") %>%
add_row(variable = "shannon", axis_name = "Biodiversity (Shannon)") %>%
add_row(variable = "shannon_d", axis_name = "Biodiversity ES (Shannon ES)") %>%
add_row(variable = "bray_curtis", axis_name = "β-Diversity (Bray-Curtis)") %>%
add_row(variable = "beta_spatial_turnover", axis_name = "Turn over (Simpson pair-wise dissimilarity)") %>%
add_row(variable = "beta_nestedness", axis_name = "Nestedness (nestedness-fraction of Sorensen)") %>%
add_row(variable = "beta_total", axis_name = "Tot β-Diversity (Sorensen)") %>%
add_row(variable = "metaecosystem_richness", axis_name = "γ-Diversity (Species Richness)") %>%
add_row(variable = "indiv_per_ml", axis_name = "Abundance (ind/ml)") %>%
add_row(variable = "indiv_per_ml_d", axis_name = "Abundance ES") %>%
add_row(variable = "median_body_area_µm2", axis_name = "Median Body Size (µm²)") %>%
add_row(variable = "median_body_area_µm2_d", axis_name = "Median Body Size ES") %>%
add_row(variable = "Ble_indiv_per_ml", axis_name = "Ble Density (ind/ml)") %>%
add_row(variable = "Cep_indiv_per_ml", axis_name = "Cep Density (ind/ml)") %>%
add_row(variable = "Col_indiv_per_ml", axis_name = "Col Density (ind/ml)") %>%
add_row(variable = "Eug_indiv_per_ml", axis_name = "Eug Density (ind/ml)") %>%
add_row(variable = "Eup_indiv_per_ml", axis_name = "Eup Density (ind/ml)") %>%
add_row(variable = "Lox_indiv_per_ml", axis_name = "Lox Density (ind/ml)") %>%
add_row(variable = "Pau_indiv_per_ml", axis_name = "Pau Density (ind/ml)") %>%
add_row(variable = "Pca_indiv_per_ml", axis_name = "Pca Density (ind/ml)") %>%
add_row(variable = "Spi_indiv_per_ml", axis_name = "Spi Density (ind/ml)") %>%
add_row(variable = "Spi_te_indiv_per_ml", axis_name = "Spi te Density (ind/ml)") %>%
add_row(variable = "Tet_indiv_per_ml", axis_name = "Tet Density (ind/ml)") %>%
add_row(variable = "auto_hetero_ratio", axis_name = "Photosynthetisers-Heterotrops Ratio") %>%
add_row(variable = "Ble_indiv_per_ml_d", axis_name = "Ble Density ES") %>%
add_row(variable = "Cep_indiv_per_ml_d", axis_name = "Cep Density ES") %>%
add_row(variable = "Col_indiv_per_ml_d", axis_name = "Col Density ES") %>%
add_row(variable = "Eug_indiv_per_ml_d", axis_name = "Eug Density ES") %>%
add_row(variable = "Eup_indiv_per_ml_d", axis_name = "Eup Density ES") %>%
add_row(variable = "Lox_indiv_per_ml_d", axis_name = "Lox Density ES") %>%
add_row(variable = "Pau_indiv_per_ml_d", axis_name = "Pau Density ES") %>%
add_row(variable = "Pca_indiv_per_ml_d", axis_name = "Pca Density ES") %>%
add_row(variable = "Spi_indiv_per_ml_d", axis_name = "Spi Density ES") %>%
add_row(variable = "Spi_te_indiv_per_ml_d", axis_name = "Spi te Density ES") %>%
add_row(variable = "Tet_indiv_per_ml_d", axis_name = "Tet Density ES") %>%
add_row(variable = "Ble_indiv_per_ml_dominance", axis_name = "Ble Dominance (%)") %>%
add_row(variable = "Cep_indiv_per_ml_dominance", axis_name = "Cep Dominance (%)") %>%
add_row(variable = "Col_indiv_per_ml_dominance", axis_name = "Col Dominance (%)") %>%
add_row(variable = "Eug_indiv_per_ml_dominance", axis_name = "Eug Dominance (%)") %>%
add_row(variable = "Eup_indiv_per_ml_dominance", axis_name = "Eup Dominance (%)") %>%
add_row(variable = "Lox_indiv_per_ml_dominance", axis_name = "Lox Dominance (%)") %>%
add_row(variable = "Pau_indiv_per_ml_dominance", axis_name = "Pau Dominance (%)") %>%
add_row(variable = "Pca_indiv_per_ml_dominance", axis_name = "Pca Dominance (%)") %>%
add_row(variable = "Spi_indiv_per_ml_dominance", axis_name = "Spi Dominance (%)") %>%
add_row(variable = "Spi_te_indiv_per_ml_dominance", axis_name = "Spi te Dominance (%)") %>%
add_row(variable = "Tet_indiv_per_ml_dominance", axis_name = "Tet Dominance (%)") %>%
add_row(variable = "Ble_indiv_per_ml_dominance_d", axis_name = "Ble Dominance ES") %>%
add_row(variable = "Cep_indiv_per_ml_dominance_d", axis_name = "Cep Dominance ES") %>%
add_row(variable = "Col_indiv_per_ml_dominance_d", axis_name = "Col Dominance ES") %>%
add_row(variable = "Eug_indiv_per_ml_dominance_d", axis_name = "Eug Dominance ES") %>%
add_row(variable = "Eup_indiv_per_ml_dominance_d", axis_name = "Eup Dominance ES") %>%
add_row(variable = "Lox_indiv_per_ml_dominance_d", axis_name = "Lox Dominance ES") %>%
add_row(variable = "Pau_indiv_per_ml_dominance_d", axis_name = "Pau Dominance ES") %>%
add_row(variable = "Pca_indiv_per_ml_dominance_d", axis_name = "Pca Dominance ES") %>%
add_row(variable = "Sp_indiv_per_mli_dominance_d", axis_name = "Spi Dominance ES") %>%
add_row(variable = "Spi_te_indiv_per_ml_dominance_d", axis_name = "Spi te Dominance ES") %>%
add_row(variable = "Tet_indiv_per_ml_dominance_d", axis_name = "Tet Dominance ES") %>%
add_row(variable = "dominance", axis_name = "Dominance (%)") %>%
add_row(variable = "log_abundance", axis_name = "Log Abundance + 1 (ind/mm²)") %>%
add_row(variable = "abundance_hedges_d", axis_name = "Density ES") %>%
add_row(variable = "beta_diversity_from_unconnected", axis_name = "Divergence from unconnected") %>%
add_row(variable = "beta_diversity_from_previous_time", axis_name = "Temporal Divergence") %>%
add_row(variable = "beta_diversity_from_previous_time_d", axis_name = "Temporal Divergence ES") %>%
add_row(variable = "evenness_pielou", axis_name = "Evenness") %>%
add_row(variable = "evenness_pielou_d", axis_name = "Evenness ES") %>%
slice(-1)
Colour and line type per ecosystem/meta-ecosystem type.
parameters_treatments = data.frame(treatment = NA,
colour = NA,
linetype = NA) %>%
add_row(treatment = "Small connected to large", colour = "#feb24c", linetype = "solid") %>%
add_row(treatment = "Small connected to small", colour = "#feb24c", linetype = "dashed") %>%
add_row(treatment = "Small unconnected", colour = "#bdbdbd", linetype = "solid") %>%
add_row(treatment = "Large connected to small", colour = "#3182bd", linetype = "solid") %>%
add_row(treatment = "Large connected to large", colour = "#3182bd", linetype = "dashed") %>%
add_row(treatment = "Large unconnected", colour = "#000000", linetype = "solid") %>%
add_row(treatment = "Medium connected to medium", colour = "#de2d26", linetype = "solid") %>%
add_row(treatment = "Medium unconnected", colour = "#737373", linetype = "solid") %>%
add_row(treatment = "Small-Large meta-ecosystem", colour = "#762a83", linetype = "solid") %>%
add_row(treatment = "Small-Large unconnected", colour = "#762a83", linetype = "dashed") %>%
add_row(treatment = "Medium-Medium meta-ecosystem", colour = "#1b7837", linetype = "solid") %>%
add_row(treatment = "Medium-Medium unconnected", colour = "#1b7837", linetype = "dashed") %>%
add_row(treatment = "Large-Large meta-ecosystem", colour = "#67000d", linetype = "solid") %>%
add_row(treatment = "Small-Small meta-ecosystem", colour = "#fc9272", linetype = "solid") %>%
slice(-1)
Parameters for plotting.
figures_height_rmd_output = 7
legend_position = "top"
legend_width_cm = 2
size_legend = 12
size_x_axis = 13
size_y_axis = size_x_axis
boxplot_width = 2
dodging = 0.5
width_errorbar = 0.2
dodging_error_bar = 0.5
treatment_lines_linewidth = 1
treatment_points_size = 2.5
resource_flow_line_type = "solid"
resource_flow_line_colour = "#d9d9d9"
resource_flow_line_width = 0.3
zero_line_colour = "grey"
zero_line_line_type = "dotted"
zero_line_line_width = 0.5
zero_line_ES_line_type = "dotted"
zero_line_ES_colour = "grey"
zero_line_ES_line_width = 1
ggarrange_margin_top = 0
ggarrange_margin_bottom = 0
ggarrange_margin_left = 0
ggarrange_margin_right = 0
paper_width = 17.3
paper_height = 20
paper_units = "cm"
paper_res = 600
paper_y_axis_size = 9
paper_labels_size = 9
presentation_figure_size = 15
presentation_figure_width = 30
presentation_figure_height = 22
presentation_legend_size = 20
presentation_x_axis_size = 22
presentation_y_axis_size = presentation_x_axis_size
presentation_axes_size = 12
presentation_treatment_points_size = 5
presentation_treatment_linewidth = 2
presentation_figure_units = "cm"
presentation_figure_res = 600
grey_background_xmin = -Inf
grey_background_xmax = 7.5
grey_background_ymin = -Inf
grey_background_ymax = Inf
grey_background_fill = "#f0f0f0"
grey_background_alpha = 0.03
grey_background_color = "transparent"
Parameters for modelling.
first_time_point_model = 2 #Time point 2 is the first after disturbance
last_time_point_model = last_time_point
optimizer_input = 'Nelder_Mead'
method_input = ''
compar_ex = "The full and fixed models are compared to the null model."
results_table = data.frame(Response = as.character(NA),
Levels = as.character(NA),
ΔAIC_full = NA,
p_full = NA,
ΔR2_full = NA,
ΔAIC_fix = NA,
p_fix = NA,
ΔR2_fix = NA) %>%
slice(-1)
culture_info)We start by importing the information about the 110 patches of the experiment.
culture_info = read.csv(here("2_data", "culture_info.csv"), header = TRUE)
In this dataset (ds_individuals) each row represents an
individual at a time point.
# Import the individual data of t0. We considered cultures to be all the same at the beginning (t0). Because of this reason, we filmed only the bottles from which cultures were assembled. Because we want to plot also t0 for the different treatments, we want to assign the video of bottles to all cultures at t0.
ds_individuals_t0_not_elongated = read.csv(here("2_data", "individuals", "t0.csv")) %>%
mutate(time_point = as.numeric(str_extract(time_point, "\\d+")),
day = 0,
file = as.numeric(str_extract(file, "\\d+")),
video_replicate = file) %>%
select(time_point,
day,
video_replicate,
file,
id,
N_frames,
mean_area)
ds_individuals_t0_elongated = ds_individuals_t0_not_elongated %>%
map_dfr(.x = 1 : nrow(culture_info),
.f = ~ ds_individuals_t0_not_elongated) %>%
arrange(id) %>% #Id refers to an individual
mutate(culture_ID = rep(1 : nrow(culture_info),
times = nrow(ds_individuals_t0_not_elongated))) %>%
select(time_point,
day,
video_replicate,
file,
culture_ID,
id,
N_frames,
mean_area)
expect_equal(nrow(ds_individuals_t0_not_elongated) * nrow(culture_info),
nrow(ds_individuals_t0_elongated))
#Import t1-t4
ds_individuals_t1_to_t4 = NULL
for (time_point_i in time_points_without_t0) {
ds_individuals_t1_to_t4[[time_point_i]] = read.csv(here("2_data",
"individuals",
paste0("t",
time_point_i,
".csv"))) %>%
mutate(time_point = as.numeric(str_extract(time_point, "\\d+")),
day = time_point_day$day[time_point_day$time_point == time_point_i],
file = as.numeric(str_extract(file, "\\d+")),
video_replicate = ceiling(file/n_cultures)) #Until 110 video replicate = 1, then 2
}
ds_individuals_t1_to_t4 = ds_individuals_t1_to_t4 %>%
bind_rows() %>%
select(time_point,
day,
video_replicate,
file,
culture_ID,
id,
N_frames,
mean_area)
# Bind t0 with t1-t4
ds_individuals = rbind(ds_individuals_t0_elongated,
ds_individuals_t1_to_t4) %>%
left_join(culture_info,
by = "culture_ID")
# Rename and select columns
ds_individuals = ds_individuals %>%
select(
disturbance,
disturbance_volume,
time_point,
day,
video_replicate,
culture_ID,
system_nr,
file,
eco_metaeco_type,
patch_size,
patch_size_volume,
metaecosystem,
metaecosystem_type,
mean_area,
N_frames
) %>%
rename(patch_size_ml = patch_size_volume,
patch_type = eco_metaeco_type,
body_area_µm2 = mean_area)
# Rename and reorder levels
ds_individuals <- ds_individuals %>%
mutate(patch_type = case_when(patch_type == "S" ~ "Small unconnected",
patch_type == "M" ~ "Medium unconnected",
patch_type == "L" ~ "Large unconnected",
patch_type == "S (S_S)" ~ "Small connected to small",
patch_type == "S (S_L)" ~ "Small connected to large",
patch_type == "M (M_M)" ~ "Medium connected to medium",
patch_type == "L (S_L)" ~ "Large connected to small",
patch_type == "L (L_L)" ~ "Large connected to large",
TRUE ~ patch_type),
patch_type = factor(patch_type,
levels = patch_types_ordered))
ds_individuals <- ds_individuals %>%
mutate(patch_size = case_when(patch_size == "S" ~ "Small",
patch_size == "M" ~ "Medium",
patch_size == "L" ~ "Large",
TRUE ~ patch_type),
patch_size = factor(patch_size,
levels = "Small",
"Medium",
"Large"))
ds_individuals <- ds_individuals %>%
mutate(size_connected_patch = case_when(patch_type == "Small connected to small" ~ "Small",
patch_type == "Small connected to large" ~ "Large",
patch_type == "Medium connected to medium" ~ "Medium",
patch_type == "Large connected to large" ~ "Large",
patch_type == "Large connected to small" ~ "Small",
TRUE ~ NA_character_))
# Take off problematic videos
ds_individuals_before_taking_off_videos = ds_individuals
ds_individuals = ds_individuals %>%
filter(!(time_point %in% videos_to_take_off$time_point & file %in% videos_to_take_off$file))
diff = setdiff(ds_individuals_before_taking_off_videos, ds_individuals)
expect_equal(nrow(videos_to_take_off),
nrow(expand.grid(diff$culture_ID, diff$time_point, diff$file) %>% unique()))
# Take off problematic cultures
ds_individuals_before_taking_off_cultures = ds_individuals
ds_individuals = ds_individuals %>%
filter(!culture_ID %in% patches_to_take_off)
expect_equal(setdiff(ds_individuals_before_taking_off_cultures,
ds_individuals) %>%
pull(culture_ID) %>%
unique(),
patches_to_take_off)
ds_patches)In this dataset (ds_patches) each row represents a patch
at a time point. I use the data from the 40 threshold analysis for Ble,
Cep, Spi and the data from the 13 threshold analysis for all the other
protists (Col, Eup, Lox, Pau, Pca, Spi te, Tet).
# Import & bind t0 datasets.
ds_patches_t0 = read.csv(here("2_data", "populations", "t0.csv")) %>%
mutate(time_point = as.numeric(str_extract(time_point, "\\d+")),
day = 0,
video_replicate = file) %>%
select(time_point,
day,
video_replicate,
file,
bioarea_per_volume,
indiv_per_volume)
species_ID_13_threshold_t0 = read.csv(here("2_data", "species_ID_13_threshold", paste0("t0.csv"))) %>%
rename(Ble_indiv_per_volume = Ble,
Cep_indiv_per_volume = Cep,
Col_indiv_per_volume = Col,
Eug_indiv_per_volume = Eug,
Eup_indiv_per_volume = Eup,
Lox_indiv_per_volume = Lox,
Pau_indiv_per_volume = Pau,
Pca_indiv_per_volume = Pca,
Spi_indiv_per_volume = Spi,
Spi_te_indiv_per_volume = Spi_te,
Tet_indiv_per_volume = Tet) %>%
select(file,
all_of(species_IDD_with_13_threshold_indiv_per_volume))
species_ID_40_threshold_t0 = read.csv(here("2_data", "species_ID_40_threshold", paste0("t0.csv"))) %>%
rename(Ble_indiv_per_volume = Ble,
Cep_indiv_per_volume = Cep,
Col_indiv_per_volume = Col,
Eug_indiv_per_volume = Eug,
Eup_indiv_per_volume = Eup,
Lox_indiv_per_volume = Lox,
Pau_indiv_per_volume = Pau,
Pca_indiv_per_volume = Pca,
Spi_indiv_per_volume = Spi,
Spi_te_indiv_per_volume = Spi_te,
Tet_indiv_per_volume = Tet) %>%
select(file,
all_of(species_IDD_with_40_threshold_indiv_per_volume))
ds_patches_t0 = ds_patches_t0 %>%
left_join(species_ID_13_threshold_t0,
by = "file") %>%
left_join(species_ID_40_threshold_t0,
by = "file") %>%
mutate(file = as.numeric(str_extract(file, "\\d+")))
# Elongate t0 dataset.
ds_patches_t0_elongated <- list()
for (video_i in 1 : n_videos_taken_t0) {
single_video = ds_patches_t0 %>%
filter(file == video_i)
ds_patches_t0_elongated[[video_i]] = culture_info %>%
mutate(
time_point = 0,
day = 0,
file = single_video$file,
video_replicate = single_video$video_replicate,
bioarea_per_volume = single_video$bioarea_per_volume,
indiv_per_volume = single_video$indiv_per_volume,
Ble_indiv_per_volume = single_video$Ble_indiv_per_volume,
Cep_indiv_per_volume = single_video$Cep_indiv_per_volume,
Col_indiv_per_volume = single_video$Col_indiv_per_volume,
Eug_indiv_per_volume = single_video$Eug_indiv_per_volume,
Eup_indiv_per_volume = single_video$Eup_indiv_per_volume,
Lox_indiv_per_volume = single_video$Lox_indiv_per_volume,
Pau_indiv_per_volume = single_video$Pau_indiv_per_volume,
Pca_indiv_per_volume = single_video$Pca_indiv_per_volume,
Spi_indiv_per_volume = single_video$Spi_indiv_per_volume,
Spi_te_indiv_per_volume = single_video$Spi_te_indiv_per_volume,
Tet_indiv_per_volume = single_video$Tet_indiv_per_volume)
}
ds_patches_t0_elongated = ds_patches_t0_elongated %>%
bind_rows()
# Clean the columns of t0
ds_patches_t0 = ds_patches_t0_elongated %>%
select(
file,
time_point,
day,
culture_ID,
video_replicate,
bioarea_per_volume,
indiv_per_volume,
all_of(protist_species_indiv_per_volume))
expect_equal(nrow(ds_patches_t0), sum(n_videos_taken_t0 * n_cultures))
# Import and bind t1-t4
ds_patches_t1_to_t4 = NULL
for (time_point_i in time_points_without_t0) {
species_ID_13_threshold = read.csv(here("2_data",
"species_ID_13_threshold",
paste0("t", time_point_i, ".csv"))) %>%
rename(Ble_indiv_per_volume = Ble,
Cep_indiv_per_volume = Cep,
Col_indiv_per_volume = Col,
Eug_indiv_per_volume = Eug,
Eup_indiv_per_volume = Eup,
Lox_indiv_per_volume = Lox,
Pau_indiv_per_volume = Pau,
Pca_indiv_per_volume = Pca,
Spi_indiv_per_volume = Spi,
Spi_te_indiv_per_volume = Spi_te,
Tet_indiv_per_volume = Tet) %>%
select(file,
all_of(species_IDD_with_13_threshold_indiv_per_volume))
species_ID_40_threshold = read.csv(here("2_data",
"species_ID_40_threshold",
paste0("t", time_point_i, ".csv"))) %>%
rename(Ble_indiv_per_volume = Ble,
Cep_indiv_per_volume = Cep,
Col_indiv_per_volume = Col,
Eug_indiv_per_volume = Eug,
Eup_indiv_per_volume = Eup,
Lox_indiv_per_volume = Lox,
Pau_indiv_per_volume = Pau,
Pca_indiv_per_volume = Pca,
Spi_indiv_per_volume = Spi,
Spi_te_indiv_per_volume = Spi_te,
Tet_indiv_per_volume = Tet) %>%
select(file,
all_of(species_IDD_with_40_threshold_indiv_per_volume))
ds_patches_t1_to_t4[[time_point_i]] = read.csv(here("2_data",
"populations",
paste0("t", time_point_i, ".csv"))) %>%
arrange(file) %>%
mutate(video_replicate = rep(1 : time_point_day$video_replicates[time_point_i+1],
each = n_cultures),
day = time_point_day$day[time_point_day$time_point == time_point_i]) %>%
select(
file,
time_point,
day,
video_replicate,
file,
culture_ID,
bioarea_per_volume,
indiv_per_volume)
ds_patches_t1_to_t4[[time_point_i]] = ds_patches_t1_to_t4[[time_point_i]] %>%
left_join(species_ID_13_threshold,
by = "file") %>%
left_join(species_ID_40_threshold,
by = "file")
}
ds_patches_t1_to_t4 = ds_patches_t1_to_t4 %>%
bind_rows()
# Bind t0 with t1-t4
ds_patches = rbind(ds_patches_t0,
ds_patches_t1_to_t4) %>%
left_join(culture_info,
by = "culture_ID")
expect_equal(nrow(ds_patches),
sum(sum(time_point_day$video_replicates) * n_cultures))
# Reorder and rename columns
ds_patches = ds_patches %>%
rename(patch_size_ml = patch_size_volume) %>%
select(
file,
time_point,
day,
disturbance,
culture_ID,
system_nr,
eco_metaeco_type,
patch_size,
patch_size_ml,
metaecosystem,
metaecosystem_type,
video_replicate,
bioarea_per_volume,
indiv_per_volume,
all_of(protist_species_indiv_per_volume)
) %>%
rename(patch_type = eco_metaeco_type,
bioarea_µm2_per_μL = bioarea_per_volume) %>%
rename_all( ~ gsub("volume", "μL", .))
# Rename and reorder levels
ds_patches <- ds_patches %>%
mutate(
patch_type = case_when(
patch_type == "S" ~ "Small unconnected",
patch_type == "M" ~ "Medium unconnected",
patch_type == "L" ~ "Large unconnected",
patch_type == "S (S_S)" ~ "Small connected to small",
patch_type == "S (S_L)" ~ "Small connected to large",
patch_type == "M (M_M)" ~ "Medium connected to medium",
patch_type == "L (S_L)" ~ "Large connected to small",
patch_type == "L (L_L)" ~ "Large connected to large",
TRUE ~ patch_type
),
patch_type = factor(x = patch_type,
levels = patch_types_ordered),
patch_size = case_when(
patch_size == "S" ~ "Small",
patch_size == "M" ~ "Medium",
patch_size == "L" ~ "Large",
TRUE ~ patch_size
),
metaecosystem_type = case_when(
metaecosystem_type == "S_S" ~ "Small-Small meta-ecosystem",
metaecosystem_type == "M_M" ~ "Medium-Medium meta-ecosystem",
metaecosystem_type == "L_L" ~ "Large-Large meta-ecosystem",
metaecosystem_type == "S_L" ~ "Small-Large meta-ecosystem",
TRUE ~ metaecosystem_type
),
size_connected_patch = case_when(
patch_type == "Small connected to small" ~ "Small",
patch_type == "Small connected to large" ~ "Large",
patch_type == "Medium connected to medium" ~ "Medium",
patch_type == "Large connected to large" ~ "Large",
patch_type == "Large connected to small" ~ "Small",
TRUE ~ NA_character_
),
time_point = as.numeric(str_extract(time_point, "\\d+")),
file = as.numeric(str_extract(file, "\\d+")),
)
# Change units of measurments to ml
ds_patches = ds_patches %>%
mutate(bioarea_µm2_per_ml = bioarea_µm2_per_μL * 10^3,
bioarea_mm2_per_ml = bioarea_µm2_per_ml * 10^(-6),
Ble_indiv_per_ml = Ble_indiv_per_μL * 10^3,
Cep_indiv_per_ml = Cep_indiv_per_μL * 10^3,
Col_indiv_per_ml = Col_indiv_per_μL * 10^3,
Eug_indiv_per_ml = Eug_indiv_per_μL * 10^3,
Eup_indiv_per_ml = Eup_indiv_per_μL * 10^3,
Lox_indiv_per_ml = Lox_indiv_per_μL * 10^3,
Pau_indiv_per_ml = Pau_indiv_per_μL * 10^3,
Pca_indiv_per_ml = Pca_indiv_per_μL * 10^3,
Spi_indiv_per_ml = Spi_indiv_per_μL * 10^3,
Spi_te_indiv_per_ml = Spi_te_indiv_per_μL * 10^3,
Tet_indiv_per_ml = Tet_indiv_per_μL * 10^3)
# Take off problematic videos
ds_patches_before_taking_off_videos = ds_patches
ds_patches = ds_patches %>%
filter(!(time_point %in% videos_to_take_off$time_point & file %in% videos_to_take_off$file))
diff = setdiff(ds_patches_before_taking_off_videos, ds_patches)
expect_equal(nrow(videos_to_take_off),
nrow(expand.grid(diff$culture_ID, diff$time_point, diff$file) %>% unique()))
# Take off problematic cultures
ds_patches_before_taking_off_cultures = ds_patches
ds_patches = ds_patches %>%
filter(!culture_ID %in% patches_to_take_off)
expect_equal(setdiff(ds_patches_before_taking_off_cultures,
ds_patches) %>%
pull(culture_ID) %>%
unique(),
patches_to_take_off)
# Average videos
ds_patches = ds_patches %>%
group_by(across(all_of(columns_patches))) %>%
summarise(across(contains("_per_ml"), mean),
across(contains("_tot"), mean)) %>%
ungroup()
expect_equal(nrow(ds_patches),
(n_cultures - length(patches_to_take_off)) * length(time_points))
# Add connection and individuals
ds_patches = ds_patches %>%
mutate(indiv_per_ml = !!rlang::parse_expr(paste(protist_species_indiv_per_ml,
collapse = " + ")))
ds_patches = ds_patches %>%
mutate(connection = ifelse(str_detect(patch_type, "unconnected"),
"unconnected",
"connected"),
connection = factor(x = connection,
levels = c("unconnected", "connected")))
# Calculate total response variable for the whole patch
ds_patches = ds_patches %>%
mutate(bioarea_tot_mm2 = bioarea_mm2_per_ml * patch_size_ml,
indiv_tot = indiv_per_ml * patch_size_ml,
Ble_tot_indiv = Ble_indiv_per_ml * patch_size_ml,
Cep_tot_indiv = Cep_indiv_per_ml * patch_size_ml,
Col_tot_indiv = Col_indiv_per_ml * patch_size_ml,
Eug_tot_indiv = Eug_indiv_per_ml * patch_size_ml,
Eup_tot_indiv = Eup_indiv_per_ml * patch_size_ml,
Lox_tot_indiv = Lox_indiv_per_ml * patch_size_ml,
Pau_tot_indiv = Pau_indiv_per_ml * patch_size_ml,
Pca_tot_indiv = Pca_indiv_per_ml * patch_size_ml,
Spi_tot_indiv = Spi_indiv_per_ml * patch_size_ml,
Spi_te_tot_indiv = Spi_te_indiv_per_ml * patch_size_ml,
Tet_tot_indiv = Tet_indiv_per_ml * patch_size_ml)
# Calculate species dominance
ds_patches = ds_patches %>%
mutate(across(.cols = all_of(protist_species_indiv_per_ml),
.fns = list(dominance = ~ (. / indiv_per_ml) * 100),
.names = "{col}_dominance"))
expect_equal(unique(ds_patches$Ble_indiv_per_ml_dominance[ds_patches$indiv_per_ml == 0]), NaN)
if (FALSE %in% unique((ds_patches$Ble_indiv_per_ml/ds_patches$indiv_per_ml) *100 == ds_patches$Ble_indiv_per_ml_dominance)) stop()
# Calculate alpha diversity (Shannon, Simpson, Inverse Simpson, Evenness)
n_rows_ds_patches_before_calculating_alpha = nrow(ds_patches)
ds_patches = calculate.alpha.diversity()
expect_equal(max(ds_patches$species_richness),
length(protist_species))
expect_equal(nrow(ds_patches),
n_rows_ds_patches_before_calculating_alpha)
# Calculate median body size
n_rows_ds_patches_before_median_size = nrow(ds_patches)
ds_median_body_size = ds_individuals %>%
group_by(time_point,
culture_ID,
file) %>%
summarise(median_body_area_µm2 = median(body_area_µm2)) %>%
group_by(time_point,
culture_ID) %>%
summarise(median_body_area_µm2 = mean(median_body_area_µm2))
expect_true(nrow(ds_median_body_size) <= nrow(ds_patches)) #Ds median body size could be less because some cultures might be crashed and not have any individual.
ds_patches_before_full_join = ds_patches
ds_patches = full_join(ds_patches, ds_median_body_size)
expect_equal(nrow(ds_patches),
n_rows_ds_patches_before_median_size)
# Calculate auto/heterotrophic ratio
ds_patches = ds_patches %>%
mutate(auto_hetero_ratio = (Eug_indiv_per_ml + Eup_indiv_per_ml) /
(Ble_indiv_per_ml +
Cep_indiv_per_ml +
Col_indiv_per_ml +
Lox_indiv_per_ml +
Pau_indiv_per_ml +
Pca_indiv_per_ml +
Spi_indiv_per_ml +
Spi_te_indiv_per_ml +
Tet_indiv_per_ml))
ds_patches_effect_size)In this dataset (ds_patches_effect_size) each row
represents a treatment at a time point. It contains the effect size of
the connection of a patch (connected vs unconnected).
# Calculate the mean & sd of response variables for each treatment/control at each time point
ds_patches_effect_size = NULL
variable_nr = 0
for (variable_i in variables_patches) {
variable_nr = variable_nr + 1
ds_patches_effect_size[[variable_nr]] = ds_patches %>%
filter(time_point >= 1,
!is.na(!!sym(variable_i))) %>%
group_by(across(all_of(columns_patches[columns_patches != "culture_ID" &
columns_patches != "system_nr"]))) %>%
summarise(across(all_of(variable_i),
list(mean = mean,
sd = sd)),
sample_size = n()) %>%
rename_with( ~ paste0(variable_i, "_sample_size"),
matches("sample_size"))
}
ds_patches_effect_size <- reduce(ds_patches_effect_size,
full_join,
by = columns_patches[columns_patches != "culture_ID" &
columns_patches != "system_nr"])
expect_equal(nrow(ds_patches_effect_size),
n_patch_types * (n_time_points-1) * n_disturbance_levels)
# Calculate the effect size (Hedge's d) for each treatment at each time point
for (variable_i in variables_patches) {
ds_patches_effect_size <- ds_patches_effect_size %>%
mutate(
!!paste0(variable_i, "_d") := NA,
!!paste0(variable_i, "_d_upper") := NA,
!!paste0(variable_i, "_d_lower") := NA
)
}
row_n = 0
for (treatment_input in treatments_and_controls$treatment) {
for (time_point_input in time_points) {
row_n = row_n + 1
control_input = treatments_and_controls$control[
treatments_and_controls$treatment == treatment_input
]
treatment_row = ds_patches_effect_size %>%
filter(patch_type == treatment_input,
time_point == time_point_input)
control_row = ds_patches_effect_size %>%
filter(patch_type == control_input,
time_point == time_point_input)
for (response_variable in variables_patches) {
hedges_d = calculate.hedges_d(
treatment_row[[paste0(response_variable, "_mean")]],
treatment_row[[paste0(response_variable, "_sd")]],
treatment_row[[paste0(response_variable, "_sample_size")]],
control_row[[paste0(response_variable, "_mean")]],
control_row[[paste0(response_variable, "_sd")]],
control_row[[paste0(response_variable, "_sample_size")]]
)
ds_patches_effect_size[[paste0(response_variable, "_d")]][
ds_patches_effect_size$patch_type == treatment_input &
ds_patches_effect_size$time_point == time_point_input] =
hedges_d$d
ds_patches_effect_size[[paste0(response_variable, "_d_upper")]][
ds_patches_effect_size$patch_type == treatment_input &
ds_patches_effect_size$time_point == time_point_input] =
hedges_d$upper_CI
ds_patches_effect_size[[paste0(response_variable, "_d_lower")]][
ds_patches_effect_size$patch_type == treatment_input &
ds_patches_effect_size$time_point == time_point_input] =
hedges_d$lower_CI
}
}
}
expect_equal(nrow(ds_patches_effect_size),
n_patch_types * (n_time_points-1) * n_disturbance_levels)
ds_metaecosystems)In this dataset (ds_metaecosystems) each row represents
a meta-ecosystem or a two-patch unconnected system at a time point.
#Find combinations of patches in unconnected two-patch systems.
ID_unconnected_S_low = ds_patches %>%
filter(patch_type == "Small unconnected",
disturbance == "low") %>%
pull(culture_ID) %>%
unique()
ID_unconnected_M_low = ds_patches %>%
filter(patch_type == "Medium unconnected",
disturbance == "low") %>%
pull(culture_ID) %>%
unique()
ID_unconnected_L_low = ds_patches %>%
filter(patch_type == "Large unconnected",
disturbance == "low") %>%
pull(culture_ID) %>%
unique()
ID_unconnected_S_high = ds_patches %>%
filter(patch_type == "Small unconnected",
disturbance == "high") %>%
pull(culture_ID) %>%
unique()
ID_unconnected_M_high = ds_patches %>%
filter(patch_type == "Medium unconnected",
disturbance == "high") %>%
pull(culture_ID) %>%
unique()
ID_unconnected_L_high = ds_patches %>%
filter(patch_type == "Large unconnected",
disturbance == "high") %>%
pull(culture_ID) %>%
unique()
# Find combinations of patches to create different two-patch unconnected systems
combinations_S_and_L_low = crossing(ID_unconnected_S_low,
ID_unconnected_L_low) %>%
mutate(disturbance = "low",
metaecosystem_type = "Small-Large unconnected") %>%
rename(ID_first_patch = ID_unconnected_S_low,
ID_second_patch = ID_unconnected_L_low) %>%
select(disturbance,
metaecosystem_type,
ID_first_patch,
ID_second_patch)
combinations_S_and_L_high = crossing(ID_unconnected_S_high,
ID_unconnected_L_high) %>%
mutate(disturbance = "high",
metaecosystem_type = "Small-Large unconnected") %>%
rename(ID_first_patch = ID_unconnected_S_high,
ID_second_patch = ID_unconnected_L_high) %>%
select(disturbance,
metaecosystem_type,
ID_first_patch,
ID_second_patch)
combinations_M_and_M_low = combinat::combn(ID_unconnected_M_low,
m = 2) %>%
t() %>%
as.data.frame() %>%
rename(ID_first_patch = V1,
ID_second_patch = V2) %>%
mutate(disturbance = "low",
metaecosystem_type = "Medium-Medium unconnected") %>%
select(disturbance,
metaecosystem_type,
ID_first_patch,
ID_second_patch)
combinations_M_and_M_high = combinat::combn(ID_unconnected_M_high,
m = 2) %>%
t() %>%
as.data.frame() %>%
rename(ID_first_patch = V1,
ID_second_patch = V2) %>%
mutate(disturbance = "high",
metaecosystem_type = "Medium-Medium unconnected") %>%
select(disturbance,
metaecosystem_type,
ID_first_patch,
ID_second_patch)
# Bind combinations
combinations_unconnected_systems = rbind(combinations_S_and_L_low,
combinations_S_and_L_high,
combinations_M_and_M_low,
combinations_M_and_M_high) %>%
mutate(system_nr = 1001:(1000 + nrow(.))) %>%
select(system_nr,
disturbance,
metaecosystem_type,
ID_first_patch,
ID_second_patch)
# Find combinations of patches that were connected to form meta-ecosystems.
combinations_metaecos = ds_patches %>%
filter(time_point == 0,
metaecosystem == "yes") %>%
select(system_nr,
disturbance,
metaecosystem_type,
culture_ID) %>%
group_by(system_nr,
disturbance,
metaecosystem_type) %>%
summarise(ID_first_patch = (mean(culture_ID) - 0.5),
ID_second_patch = (mean(culture_ID) + 0.5)) %>%
as.data.frame()
#Bind unconnected two-patch systems and meta-ecosystems
patch_combinations = rbind(combinations_unconnected_systems,
combinations_metaecos) %>%
mutate(connection = ifelse(metaecosystem_type %in% c("Medium-Medium unconnected",
"Small-Large unconnected"),
yes = "unconnected",
no = "connected"),
patches_combined = paste0(ID_first_patch, "|", ID_second_patch))
n_patches_combinations = nrow(patch_combinations)
#Create sets for SL unconnected, where in each set a small and a large patches are paired differently. To do so, I keep the small patches on the same order and perform permutations on large patches.
SL_unconnected_sys_sets <- vector("list",
length(disturbance_levels))
for (disturbance_i in 1:length(disturbance_levels)) {
ID_small_patches = ds_patches %>%
filter(disturbance == disturbance_levels[disturbance_i],
patch_type == "Small unconnected") %>%
pull(culture_ID) %>%
unique()
ID_large_patches = ds_patches %>%
filter(disturbance == disturbance_levels[disturbance_i],
patch_type == "Large unconnected") %>%
pull(culture_ID) %>%
unique()
#Force small and large patches vectors to have the same length
length_difference <- length(ID_small_patches) - length(ID_large_patches)
if (length_difference > 0) {
ID_large_patches = c(ID_large_patches,
rep("Patch taken off",
times = abs(length(ID_small_patches) -
length(ID_large_patches))))
} else if (length_difference < 0) {
ID_small_patches = c(ID_small_patches,
rep("Patch taken off",
times = abs(length(ID_large_patches) -
length(ID_small_patches))))
}
# Create dataframe
permutations_large = permn(ID_large_patches)
SL_unconnected_sys_sets[[disturbance_i]] = data.frame(
disturbance = disturbance_levels[disturbance_i],
metaecosystem_type = "Small-Large unconnected",
connection = "unconnected",
ID_first_patch = rep(ID_small_patches, times = length(permutations_large)),
ID_second_patch = unlist(permutations_large),
set = rep(1 : length(permutations_large), each = length(ID_small_patches)))
expect_equal(nrow(SL_unconnected_sys_sets[[disturbance_i]]),
length(ID_small_patches) * length(permutations_large))
SL_unconnected_sys_sets[[disturbance_i]] = SL_unconnected_sys_sets[[disturbance_i]] %>%
filter(!ID_first_patch == "Patch taken off",
!ID_second_patch == "Patch taken off") %>%
mutate(ID_first_patch = as.double(ID_first_patch),
ID_second_patch = as.double(ID_second_patch)) %>%
full_join(patch_combinations %>%
filter(disturbance == disturbance_levels[disturbance_i],
metaecosystem_type == "Small-Large unconnected")) #Add system_nr & patches_combined
}
SL_unconnected_sys_sets_before_binding = SL_unconnected_sys_sets
SL_unconnected_sys_sets = SL_unconnected_sys_sets %>%
bind_rows()
expect_equal(nrow(SL_unconnected_sys_sets),
nrow(SL_unconnected_sys_sets_before_binding[[1]]) + nrow(SL_unconnected_sys_sets_before_binding[[2]]))
expect_equal(length(SL_unconnected_sys_sets %>%
pull(system_nr) %>%
unique()),
length(patch_combinations %>%
filter(metaecosystem_type == "Small-Large unconnected") %>%
pull(system_nr) %>%
unique()))
#WORK HERE
#Create sets for MM unconnected, where in each set two medium patches small are paired differently. To do so, I ...
#Initialise MM_unconnected_sets. Assign 10^4 rows to each matrix so that we have enough rows not to run out of them when we try to assign values to them. Assign 4 columns which will include culture_ID of the first system, second culture_ID of the fist system, culture_ID of the second system, and second culture_ID of the second system.
MM_unconnected_sets = NULL
for(disturbance_i in 1:length(disturbance_levels)){
MM_unconnected_sets[[disturbance_i]] <- matrix(nrow = 10 ^ 4,
ncol = 4)
}
for (disturbance_i in 1:length(disturbance_levels)) {
ID_medium_patches = ds_patches %>%
filter(disturbance == disturbance_levels[disturbance_i],
patch_type == "Medium unconnected") %>%
pull(culture_ID) %>%
unique()
MM_unconnected_systems = combn(ID_medium_patches,
2) %>%
t()
matrix_row = 0
for (first_system_i in 1:nrow(MM_unconnected_systems)) {
#Find culture IDs of the first system (what's the first system?)
first_system = MM_unconnected_systems[first_system_i, ]
for (second_system_i in 1:nrow(MM_unconnected_systems)) {
#Find culture IDs of the second system (what's the second system?)
second_system = MM_unconnected_systems[second_system_i, ]
shared_elements_among_systems = intersect(first_system,
second_system)
if (length(shared_elements_among_systems) == 0) {
matrix_row = matrix_row + 1
#Make first and second system into a set
MM_unconnected_sets[[disturbance_i]][matrix_row,] = c(first_system,
second_system)
print(MM_unconnected_sets[[disturbance_i]][matrix_row,])
}
}
}
#Tidy the dataset with all the patch combinations
MM_unconnected_sets[[disturbance_i]] = MM_unconnected_sets[[disturbance_i]] %>%
as.data.frame() %>%
drop_na()
expect_equal(MM_unconnected_sets[[disturbance_i]] %>%
filter(V1 == V2 | V1 == V3 | V1 == V4 | V2 == V3 | V2 == V4 | V3 == V4) %>%
nrow(),
0)
#Reorder the dataset with all the patch combinations
MM_unconnected_sets_reordered = data.frame(ID_first_patch = NA,
ID_second_patch = NA,
set = NA)
for (set_input in 1:nrow(MM_unconnected_sets[[disturbance_i]])) {
MM_unconnected_sets_reordered = MM_unconnected_sets_reordered %>%
add_row(
ID_first_patch = MM_unconnected_sets[[disturbance_i]][set_input, 1],
ID_second_patch = MM_unconnected_sets[[disturbance_i]][set_input, 2],
set = set_input
) %>%
add_row(
ID_first_patch = MM_unconnected_sets[[disturbance_i]][set_input, 3],
ID_second_patch = MM_unconnected_sets[[disturbance_i]][set_input, 4],
set = set_input
)
}
#Add to a list
MM_unconnected_sets[[disturbance_i]] = MM_unconnected_sets_reordered %>%
drop_na() %>%
mutate(
disturbance = disturbance_levels[disturbance_i],
metaecosystem_type = "Medium-Medium unconnected",
connection = "unconnected"
)
#Add system nr
ID_combinations_MM_unconnected = patch_combinations %>%
filter(disturbance == disturbance_levels[disturbance_i],
metaecosystem_type == "Medium-Medium unconnected")
MM_unconnected_sets[[disturbance_i]] = full_join(MM_unconnected_sets[[disturbance_i]],
ID_combinations_MM_unconnected)
}
## [1] 6 7 8 9
## [1] 6 7 8 10
## [1] 6 7 9 10
## [1] 6 8 7 9
## [1] 6 8 7 10
## [1] 6 8 9 10
## [1] 6 9 7 8
## [1] 6 9 7 10
## [1] 6 9 8 10
## [1] 6 10 7 8
## [1] 6 10 7 9
## [1] 6 10 8 9
## [1] 7 8 6 9
## [1] 7 8 6 10
## [1] 7 8 9 10
## [1] 7 9 6 8
## [1] 7 9 6 10
## [1] 7 9 8 10
## [1] 7 10 6 8
## [1] 7 10 6 9
## [1] 7 10 8 9
## [1] 8 9 6 7
## [1] 8 9 6 10
## [1] 8 9 7 10
## [1] 8 10 6 7
## [1] 8 10 6 9
## [1] 8 10 7 9
## [1] 9 10 6 7
## [1] 9 10 6 8
## [1] 9 10 7 8
## [1] 61 62 63 64
## [1] 61 62 63 65
## [1] 61 62 64 65
## [1] 61 63 62 64
## [1] 61 63 62 65
## [1] 61 63 64 65
## [1] 61 64 62 63
## [1] 61 64 62 65
## [1] 61 64 63 65
## [1] 61 65 62 63
## [1] 61 65 62 64
## [1] 61 65 63 64
## [1] 62 63 61 64
## [1] 62 63 61 65
## [1] 62 63 64 65
## [1] 62 64 61 63
## [1] 62 64 61 65
## [1] 62 64 63 65
## [1] 62 65 61 63
## [1] 62 65 61 64
## [1] 62 65 63 64
## [1] 63 64 61 62
## [1] 63 64 61 65
## [1] 63 64 62 65
## [1] 63 65 61 62
## [1] 63 65 61 64
## [1] 63 65 62 64
## [1] 64 65 61 62
## [1] 64 65 61 63
## [1] 64 65 62 63
#Bind all sets of MM unconnected
MM_unconnected_sets = MM_unconnected_sets %>%
bind_rows()
expect_equal(length(MM_unconnected_sets %>%
pull(system_nr) %>%
unique()),
length(patch_combinations %>%
filter(metaecosystem_type == "Medium-Medium unconnected") %>%
pull(system_nr) %>%
unique()))
#Bind SL and MM unconnected systems
unconnected_combinations_sets = rbind(SL_unconnected_sys_sets,
MM_unconnected_sets) %>%
select(disturbance,
metaecosystem_type,
connection,
set,
system_nr,
ID_first_patch,
ID_second_patch)
Each row is a meta-ecosystem.
It contains also “fake” meta-ecosystems which I created from
unconnected patches
(metaecosystem type = Small-Large unconnected &
metaecosystem type = Medium-Medium unconnected).
Warning appear after the following code, as:
#Compute meta-ecosystems for each time point
ds_metaecosystems = NULL
row_n = 0
for (combination in 1:n_patches_combinations) {
for (time_point_input in time_points) {
row_n = row_n + 1
current_day = sampling_days[time_point_input + 1]
current_system_nr = patch_combinations[combination, ]$system_nr
current_combination = patch_combinations[combination, ]$patches_combined
current_disturbance = patch_combinations[combination, ]$disturbance
current_metaeco_type = patch_combinations[combination, ]$metaecosystem_type
current_IDs = c(patch_combinations[combination, ]$ID_first_patch,
patch_combinations[combination, ]$ID_second_patch)
if (current_system_nr %in% metaecosystems_to_take_off)
next
if (current_IDs[1] == current_IDs[2])
next
species_vector_two_patches = ds_patches %>%
filter(time_point == time_point_input,
culture_ID %in% current_IDs) %>%
ungroup() %>%
select(all_of(protist_species_indiv_per_ml))
absence_presence_two_patches <-
ifelse(species_vector_two_patches > 0, 1, 0)
#Alpha diversity: Shannon (mean between the two patches)
shannon_patch_1 = diversity(species_vector_two_patches[1, ], index = "shannon")
shannon_patch_2 = diversity(species_vector_two_patches[2, ], index = "shannon")
shannon_value = (shannon_patch_1 + shannon_patch_2) / 2
#Alpha diversity: Species richness (mean between the two patches)
richness_patch_1 = specnumber(species_vector_two_patches[1, ])
richness_patch_2 = specnumber(species_vector_two_patches[2, ])
mean_richness_value = (richness_patch_1 + richness_patch_2) / 2
#Beta diversity: Jaccard
jaccard_index_value = vegdist(species_vector_two_patches,
method = "jaccard") %>%
as.numeric()
#Beta diversity: Bray Curtis
bray_curtis_value = vegdist(species_vector_two_patches,
method = "bray") %>%
as.numeric()
#Beta diversity: partitioning of beta diversity from Sorensen index into turnover (Simpson pair-wise dissimilarity) and nestedness (nestedness-fraction of Sorensen)
betapart_core_object = betapart.core(absence_presence_two_patches)
beta_spatial_turnover_value = beta.pair(betapart_core_object)$beta.sim %>% as.double()
beta_nestedness_value = beta.pair(betapart_core_object)$beta.sne %>% as.double()
beta_total_value = beta.pair(betapart_core_object)$beta.sor %>% as.double()
#Gamma diversity: Meta-ecosystem richness
metaecosystem_richness_value = colSums(species_vector_two_patches) %>%
specnumber()
#Put everything together
ds_metaecosystems[[row_n]] = ds_patches %>%
filter(culture_ID %in% current_IDs,
time_point == time_point_input) %>%
summarise(
total_metaecosystem_bioarea_mm2 = sum(bioarea_tot_mm2),
total_metaecosystem_Ble_indiv = sum(Ble_tot_indiv),
total_metaecosystem_Cep_indiv = sum(Cep_tot_indiv),
total_metaecosystem_Col_indiv = sum(Col_tot_indiv),
total_metaecosystem_Eug_indiv = sum(Eug_tot_indiv),
total_metaecosystem_Eup_indiv = sum(Eup_tot_indiv),
total_metaecosystem_Lox_indiv = sum(Lox_tot_indiv),
total_metaecosystem_Pau_indiv = sum(Pau_tot_indiv),
total_metaecosystem_Pca_indiv = sum(Pca_tot_indiv),
total_metaecosystem_Spi_indiv = sum(Spi_tot_indiv),
total_metaecosystem_Spi_te_indiv = sum(Spi_te_tot_indiv),
total_metaecosystem_Tet_indiv = sum(Tet_tot_indiv)
) %>%
mutate(
system_nr = current_system_nr,
patches_combined = current_combination,
metaecosystem_type = current_metaeco_type,
disturbance = current_disturbance,
time_point = time_point_input,
day = current_day,
jaccard_index = jaccard_index_value,
bray_curtis = bray_curtis_value,
beta_spatial_turnover = beta_spatial_turnover_value,
beta_nestedness = beta_nestedness_value,
beta_total = beta_total_value,
metaecosystem_richness = metaecosystem_richness_value,
mean_shannon = shannon_value,
mean_richness = mean_richness_value
) %>%
ungroup()
}
}
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): missing
## values in results
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "bray"): missing values
## in results
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): missing
## values in results
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "bray"): missing values
## in results
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
## Warning in vegdist(species_vector_two_patches, method = "jaccard"): you have empty rows: their dissimilarities may be
## meaningless in method "jaccard"
## Warning in vegdist(species_vector_two_patches, method = "bray"): you have empty rows: their dissimilarities may be
## meaningless in method "bray"
ds_metaecosystems = ds_metaecosystems %>%
bind_rows() %>%
as.data.frame() %>%
select(
time_point,
day,
system_nr,
patches_combined,
disturbance,
metaecosystem_type,
mean_shannon,
mean_richness,
jaccard_index,
bray_curtis,
beta_spatial_turnover,
beta_nestedness,
beta_total,
metaecosystem_richness,
total_metaecosystem_bioarea_mm2,
paste0("total_metaecosystem_", protist_species, "_indiv")
)
expect_equal(nrow(ds_metaecosystems),
n_time_points * n_patches_combinations)
#Add column connection
ds_metaecosystems$connection <-
ifelse(
ds_metaecosystems$metaecosystem_type %in% c("Medium-Medium unconnected",
"Small-Large unconnected"),
yes = "unconnected",
no = "connected"
)
#Add column patch size symmetry
ds_metaecosystems$patch_size_symmetry <-
ifelse(
ds_metaecosystems$metaecosystem_type %in% c("Small-Large unconnected",
"Small-Large meta-ecosystem"),
yes = "asymmetric",
no = "symmetric"
)
#Reorder the meta-ecosystems
ds_metaecosystems = ds_metaecosystems %>%
mutate(metaecosystem_type = factor(metaecosystem_type,
levels = metaecosystem_types_ordered))
#Join ...
full_join(ds_metaecosystems,
unconnected_combinations_sets)
## Warning in full_join(ds_metaecosystems, unconnected_combinations_sets): Detected an unexpected many-to-many relationship between `x` and `y`.
## ℹ Row 1 of `x` matches multiple rows in `y`.
## ℹ Row 1 of `y` matches multiple rows in `x`.
## ℹ If a many-to-many relationship is expected, set `relationship =
## "many-to-many"` to silence this warning.
## time_point day system_nr patches_combined disturbance
## 1 0 0 1001 1|11 low
## 2 0 0 1001 1|11 low
## 3 0 0 1001 1|11 low
## 4 0 0 1001 1|11 low
## 5 0 0 1001 1|11 low
## 6 0 0 1001 1|11 low
## 7 0 0 1001 1|11 low
## 8 0 0 1001 1|11 low
## 9 0 0 1001 1|11 low
## 10 0 0 1001 1|11 low
## 11 0 0 1001 1|11 low
## 12 0 0 1001 1|11 low
## 13 0 0 1001 1|11 low
## 14 0 0 1001 1|11 low
## 15 0 0 1001 1|11 low
## 16 0 0 1001 1|11 low
## 17 0 0 1001 1|11 low
## 18 0 0 1001 1|11 low
## 19 0 0 1001 1|11 low
## 20 0 0 1001 1|11 low
## 21 0 0 1001 1|11 low
## 22 0 0 1001 1|11 low
## 23 0 0 1001 1|11 low
## 24 0 0 1001 1|11 low
## 25 1 4 1001 1|11 low
## 26 1 4 1001 1|11 low
## 27 1 4 1001 1|11 low
## 28 1 4 1001 1|11 low
## 29 1 4 1001 1|11 low
## 30 1 4 1001 1|11 low
## 31 1 4 1001 1|11 low
## 32 1 4 1001 1|11 low
## 33 1 4 1001 1|11 low
## 34 1 4 1001 1|11 low
## 35 1 4 1001 1|11 low
## 36 1 4 1001 1|11 low
## 37 1 4 1001 1|11 low
## 38 1 4 1001 1|11 low
## 39 1 4 1001 1|11 low
## 40 1 4 1001 1|11 low
## 41 1 4 1001 1|11 low
## 42 1 4 1001 1|11 low
## 43 1 4 1001 1|11 low
## 44 1 4 1001 1|11 low
## 45 1 4 1001 1|11 low
## 46 1 4 1001 1|11 low
## 47 1 4 1001 1|11 low
## 48 1 4 1001 1|11 low
## 49 2 8 1001 1|11 low
## 50 2 8 1001 1|11 low
## 51 2 8 1001 1|11 low
## 52 2 8 1001 1|11 low
## 53 2 8 1001 1|11 low
## 54 2 8 1001 1|11 low
## 55 2 8 1001 1|11 low
## 56 2 8 1001 1|11 low
## 57 2 8 1001 1|11 low
## 58 2 8 1001 1|11 low
## 59 2 8 1001 1|11 low
## 60 2 8 1001 1|11 low
## 61 2 8 1001 1|11 low
## 62 2 8 1001 1|11 low
## 63 2 8 1001 1|11 low
## 64 2 8 1001 1|11 low
## 65 2 8 1001 1|11 low
## 66 2 8 1001 1|11 low
## 67 2 8 1001 1|11 low
## 68 2 8 1001 1|11 low
## 69 2 8 1001 1|11 low
## 70 2 8 1001 1|11 low
## 71 2 8 1001 1|11 low
## 72 2 8 1001 1|11 low
## 73 3 12 1001 1|11 low
## 74 3 12 1001 1|11 low
## 75 3 12 1001 1|11 low
## 76 3 12 1001 1|11 low
## 77 3 12 1001 1|11 low
## 78 3 12 1001 1|11 low
## 79 3 12 1001 1|11 low
## 80 3 12 1001 1|11 low
## 81 3 12 1001 1|11 low
## 82 3 12 1001 1|11 low
## 83 3 12 1001 1|11 low
## 84 3 12 1001 1|11 low
## 85 3 12 1001 1|11 low
## 86 3 12 1001 1|11 low
## 87 3 12 1001 1|11 low
## 88 3 12 1001 1|11 low
## 89 3 12 1001 1|11 low
## 90 3 12 1001 1|11 low
## 91 3 12 1001 1|11 low
## 92 3 12 1001 1|11 low
## 93 3 12 1001 1|11 low
## 94 3 12 1001 1|11 low
## 95 3 12 1001 1|11 low
## 96 3 12 1001 1|11 low
## 97 4 16 1001 1|11 low
## 98 4 16 1001 1|11 low
## 99 4 16 1001 1|11 low
## 100 4 16 1001 1|11 low
## 101 4 16 1001 1|11 low
## 102 4 16 1001 1|11 low
## 103 4 16 1001 1|11 low
## 104 4 16 1001 1|11 low
## 105 4 16 1001 1|11 low
## 106 4 16 1001 1|11 low
## 107 4 16 1001 1|11 low
## 108 4 16 1001 1|11 low
## 109 4 16 1001 1|11 low
## 110 4 16 1001 1|11 low
## 111 4 16 1001 1|11 low
## 112 4 16 1001 1|11 low
## 113 4 16 1001 1|11 low
## 114 4 16 1001 1|11 low
## 115 4 16 1001 1|11 low
## 116 4 16 1001 1|11 low
## 117 4 16 1001 1|11 low
## 118 4 16 1001 1|11 low
## 119 4 16 1001 1|11 low
## 120 4 16 1001 1|11 low
## 121 5 20 1001 1|11 low
## 122 5 20 1001 1|11 low
## 123 5 20 1001 1|11 low
## 124 5 20 1001 1|11 low
## 125 5 20 1001 1|11 low
## 126 5 20 1001 1|11 low
## 127 5 20 1001 1|11 low
## 128 5 20 1001 1|11 low
## 129 5 20 1001 1|11 low
## 130 5 20 1001 1|11 low
## 131 5 20 1001 1|11 low
## 132 5 20 1001 1|11 low
## 133 5 20 1001 1|11 low
## 134 5 20 1001 1|11 low
## 135 5 20 1001 1|11 low
## 136 5 20 1001 1|11 low
## 137 5 20 1001 1|11 low
## 138 5 20 1001 1|11 low
## 139 5 20 1001 1|11 low
## 140 5 20 1001 1|11 low
## 141 5 20 1001 1|11 low
## 142 5 20 1001 1|11 low
## 143 5 20 1001 1|11 low
## 144 5 20 1001 1|11 low
## 145 6 24 1001 1|11 low
## 146 6 24 1001 1|11 low
## 147 6 24 1001 1|11 low
## 148 6 24 1001 1|11 low
## 149 6 24 1001 1|11 low
## 150 6 24 1001 1|11 low
## 151 6 24 1001 1|11 low
## 152 6 24 1001 1|11 low
## 153 6 24 1001 1|11 low
## 154 6 24 1001 1|11 low
## 155 6 24 1001 1|11 low
## 156 6 24 1001 1|11 low
## 157 6 24 1001 1|11 low
## 158 6 24 1001 1|11 low
## 159 6 24 1001 1|11 low
## 160 6 24 1001 1|11 low
## 161 6 24 1001 1|11 low
## 162 6 24 1001 1|11 low
## 163 6 24 1001 1|11 low
## 164 6 24 1001 1|11 low
## 165 6 24 1001 1|11 low
## 166 6 24 1001 1|11 low
## 167 6 24 1001 1|11 low
## 168 6 24 1001 1|11 low
## 169 7 28 1001 1|11 low
## 170 7 28 1001 1|11 low
## 171 7 28 1001 1|11 low
## 172 7 28 1001 1|11 low
## 173 7 28 1001 1|11 low
## 174 7 28 1001 1|11 low
## 175 7 28 1001 1|11 low
## 176 7 28 1001 1|11 low
## 177 7 28 1001 1|11 low
## 178 7 28 1001 1|11 low
## 179 7 28 1001 1|11 low
## 180 7 28 1001 1|11 low
## 181 7 28 1001 1|11 low
## 182 7 28 1001 1|11 low
## 183 7 28 1001 1|11 low
## 184 7 28 1001 1|11 low
## 185 7 28 1001 1|11 low
## 186 7 28 1001 1|11 low
## 187 7 28 1001 1|11 low
## 188 7 28 1001 1|11 low
## 189 7 28 1001 1|11 low
## 190 7 28 1001 1|11 low
## 191 7 28 1001 1|11 low
## 192 7 28 1001 1|11 low
## 193 0 0 1002 1|12 low
## 194 0 0 1002 1|12 low
## 195 0 0 1002 1|12 low
## 196 0 0 1002 1|12 low
## 197 0 0 1002 1|12 low
## 198 0 0 1002 1|12 low
## 199 0 0 1002 1|12 low
## 200 0 0 1002 1|12 low
## 201 0 0 1002 1|12 low
## 202 0 0 1002 1|12 low
## 203 0 0 1002 1|12 low
## 204 0 0 1002 1|12 low
## 205 0 0 1002 1|12 low
## 206 0 0 1002 1|12 low
## 207 0 0 1002 1|12 low
## 208 0 0 1002 1|12 low
## 209 0 0 1002 1|12 low
## 210 0 0 1002 1|12 low
## 211 0 0 1002 1|12 low
## 212 0 0 1002 1|12 low
## 213 0 0 1002 1|12 low
## 214 0 0 1002 1|12 low
## 215 0 0 1002 1|12 low
## 216 0 0 1002 1|12 low
## 217 1 4 1002 1|12 low
## 218 1 4 1002 1|12 low
## 219 1 4 1002 1|12 low
## 220 1 4 1002 1|12 low
## 221 1 4 1002 1|12 low
## 222 1 4 1002 1|12 low
## 223 1 4 1002 1|12 low
## 224 1 4 1002 1|12 low
## 225 1 4 1002 1|12 low
## 226 1 4 1002 1|12 low
## 227 1 4 1002 1|12 low
## 228 1 4 1002 1|12 low
## 229 1 4 1002 1|12 low
## 230 1 4 1002 1|12 low
## 231 1 4 1002 1|12 low
## 232 1 4 1002 1|12 low
## 233 1 4 1002 1|12 low
## 234 1 4 1002 1|12 low
## 235 1 4 1002 1|12 low
## 236 1 4 1002 1|12 low
## 237 1 4 1002 1|12 low
## 238 1 4 1002 1|12 low
## 239 1 4 1002 1|12 low
## 240 1 4 1002 1|12 low
## 241 2 8 1002 1|12 low
## 242 2 8 1002 1|12 low
## 243 2 8 1002 1|12 low
## 244 2 8 1002 1|12 low
## 245 2 8 1002 1|12 low
## 246 2 8 1002 1|12 low
## 247 2 8 1002 1|12 low
## 248 2 8 1002 1|12 low
## 249 2 8 1002 1|12 low
## 250 2 8 1002 1|12 low
## 251 2 8 1002 1|12 low
## 252 2 8 1002 1|12 low
## 253 2 8 1002 1|12 low
## 254 2 8 1002 1|12 low
## 255 2 8 1002 1|12 low
## 256 2 8 1002 1|12 low
## 257 2 8 1002 1|12 low
## 258 2 8 1002 1|12 low
## 259 2 8 1002 1|12 low
## 260 2 8 1002 1|12 low
## 261 2 8 1002 1|12 low
## 262 2 8 1002 1|12 low
## 263 2 8 1002 1|12 low
## 264 2 8 1002 1|12 low
## 265 3 12 1002 1|12 low
## 266 3 12 1002 1|12 low
## 267 3 12 1002 1|12 low
## 268 3 12 1002 1|12 low
## 269 3 12 1002 1|12 low
## 270 3 12 1002 1|12 low
## 271 3 12 1002 1|12 low
## 272 3 12 1002 1|12 low
## 273 3 12 1002 1|12 low
## 274 3 12 1002 1|12 low
## 275 3 12 1002 1|12 low
## 276 3 12 1002 1|12 low
## 277 3 12 1002 1|12 low
## 278 3 12 1002 1|12 low
## 279 3 12 1002 1|12 low
## 280 3 12 1002 1|12 low
## 281 3 12 1002 1|12 low
## 282 3 12 1002 1|12 low
## 283 3 12 1002 1|12 low
## 284 3 12 1002 1|12 low
## 285 3 12 1002 1|12 low
## 286 3 12 1002 1|12 low
## 287 3 12 1002 1|12 low
## 288 3 12 1002 1|12 low
## 289 4 16 1002 1|12 low
## 290 4 16 1002 1|12 low
## 291 4 16 1002 1|12 low
## 292 4 16 1002 1|12 low
## 293 4 16 1002 1|12 low
## 294 4 16 1002 1|12 low
## 295 4 16 1002 1|12 low
## 296 4 16 1002 1|12 low
## 297 4 16 1002 1|12 low
## 298 4 16 1002 1|12 low
## 299 4 16 1002 1|12 low
## 300 4 16 1002 1|12 low
## 301 4 16 1002 1|12 low
## 302 4 16 1002 1|12 low
## 303 4 16 1002 1|12 low
## 304 4 16 1002 1|12 low
## 305 4 16 1002 1|12 low
## 306 4 16 1002 1|12 low
## 307 4 16 1002 1|12 low
## 308 4 16 1002 1|12 low
## 309 4 16 1002 1|12 low
## 310 4 16 1002 1|12 low
## 311 4 16 1002 1|12 low
## 312 4 16 1002 1|12 low
## 313 5 20 1002 1|12 low
## 314 5 20 1002 1|12 low
## 315 5 20 1002 1|12 low
## 316 5 20 1002 1|12 low
## 317 5 20 1002 1|12 low
## 318 5 20 1002 1|12 low
## 319 5 20 1002 1|12 low
## 320 5 20 1002 1|12 low
## 321 5 20 1002 1|12 low
## 322 5 20 1002 1|12 low
## 323 5 20 1002 1|12 low
## 324 5 20 1002 1|12 low
## 325 5 20 1002 1|12 low
## 326 5 20 1002 1|12 low
## 327 5 20 1002 1|12 low
## 328 5 20 1002 1|12 low
## 329 5 20 1002 1|12 low
## 330 5 20 1002 1|12 low
## 331 5 20 1002 1|12 low
## 332 5 20 1002 1|12 low
## 333 5 20 1002 1|12 low
## 334 5 20 1002 1|12 low
## 335 5 20 1002 1|12 low
## 336 5 20 1002 1|12 low
## 337 6 24 1002 1|12 low
## 338 6 24 1002 1|12 low
## 339 6 24 1002 1|12 low
## 340 6 24 1002 1|12 low
## 341 6 24 1002 1|12 low
## 342 6 24 1002 1|12 low
## 343 6 24 1002 1|12 low
## 344 6 24 1002 1|12 low
## 345 6 24 1002 1|12 low
## 346 6 24 1002 1|12 low
## 347 6 24 1002 1|12 low
## 348 6 24 1002 1|12 low
## 349 6 24 1002 1|12 low
## 350 6 24 1002 1|12 low
## 351 6 24 1002 1|12 low
## 352 6 24 1002 1|12 low
## 353 6 24 1002 1|12 low
## 354 6 24 1002 1|12 low
## 355 6 24 1002 1|12 low
## 356 6 24 1002 1|12 low
## 357 6 24 1002 1|12 low
## 358 6 24 1002 1|12 low
## 359 6 24 1002 1|12 low
## 360 6 24 1002 1|12 low
## 361 7 28 1002 1|12 low
## 362 7 28 1002 1|12 low
## 363 7 28 1002 1|12 low
## 364 7 28 1002 1|12 low
## 365 7 28 1002 1|12 low
## 366 7 28 1002 1|12 low
## 367 7 28 1002 1|12 low
## 368 7 28 1002 1|12 low
## 369 7 28 1002 1|12 low
## 370 7 28 1002 1|12 low
## 371 7 28 1002 1|12 low
## 372 7 28 1002 1|12 low
## 373 7 28 1002 1|12 low
## 374 7 28 1002 1|12 low
## 375 7 28 1002 1|12 low
## 376 7 28 1002 1|12 low
## 377 7 28 1002 1|12 low
## 378 7 28 1002 1|12 low
## 379 7 28 1002 1|12 low
## 380 7 28 1002 1|12 low
## 381 7 28 1002 1|12 low
## 382 7 28 1002 1|12 low
## 383 7 28 1002 1|12 low
## 384 7 28 1002 1|12 low
## 385 0 0 1003 1|13 low
## 386 0 0 1003 1|13 low
## 387 0 0 1003 1|13 low
## 388 0 0 1003 1|13 low
## 389 0 0 1003 1|13 low
## 390 0 0 1003 1|13 low
## 391 0 0 1003 1|13 low
## 392 0 0 1003 1|13 low
## 393 0 0 1003 1|13 low
## 394 0 0 1003 1|13 low
## 395 0 0 1003 1|13 low
## 396 0 0 1003 1|13 low
## 397 0 0 1003 1|13 low
## 398 0 0 1003 1|13 low
## 399 0 0 1003 1|13 low
## 400 0 0 1003 1|13 low
## 401 0 0 1003 1|13 low
## 402 0 0 1003 1|13 low
## 403 0 0 1003 1|13 low
## 404 0 0 1003 1|13 low
## 405 0 0 1003 1|13 low
## 406 0 0 1003 1|13 low
## 407 0 0 1003 1|13 low
## 408 0 0 1003 1|13 low
## 409 1 4 1003 1|13 low
## 410 1 4 1003 1|13 low
## 411 1 4 1003 1|13 low
## 412 1 4 1003 1|13 low
## 413 1 4 1003 1|13 low
## 414 1 4 1003 1|13 low
## 415 1 4 1003 1|13 low
## 416 1 4 1003 1|13 low
## 417 1 4 1003 1|13 low
## 418 1 4 1003 1|13 low
## 419 1 4 1003 1|13 low
## 420 1 4 1003 1|13 low
## 421 1 4 1003 1|13 low
## 422 1 4 1003 1|13 low
## 423 1 4 1003 1|13 low
## 424 1 4 1003 1|13 low
## 425 1 4 1003 1|13 low
## 426 1 4 1003 1|13 low
## 427 1 4 1003 1|13 low
## 428 1 4 1003 1|13 low
## 429 1 4 1003 1|13 low
## 430 1 4 1003 1|13 low
## 431 1 4 1003 1|13 low
## 432 1 4 1003 1|13 low
## 433 2 8 1003 1|13 low
## 434 2 8 1003 1|13 low
## 435 2 8 1003 1|13 low
## 436 2 8 1003 1|13 low
## 437 2 8 1003 1|13 low
## 438 2 8 1003 1|13 low
## 439 2 8 1003 1|13 low
## 440 2 8 1003 1|13 low
## 441 2 8 1003 1|13 low
## 442 2 8 1003 1|13 low
## 443 2 8 1003 1|13 low
## 444 2 8 1003 1|13 low
## 445 2 8 1003 1|13 low
## 446 2 8 1003 1|13 low
## 447 2 8 1003 1|13 low
## 448 2 8 1003 1|13 low
## 449 2 8 1003 1|13 low
## 450 2 8 1003 1|13 low
## 451 2 8 1003 1|13 low
## 452 2 8 1003 1|13 low
## 453 2 8 1003 1|13 low
## 454 2 8 1003 1|13 low
## 455 2 8 1003 1|13 low
## 456 2 8 1003 1|13 low
## 457 3 12 1003 1|13 low
## 458 3 12 1003 1|13 low
## 459 3 12 1003 1|13 low
## 460 3 12 1003 1|13 low
## 461 3 12 1003 1|13 low
## 462 3 12 1003 1|13 low
## 463 3 12 1003 1|13 low
## 464 3 12 1003 1|13 low
## 465 3 12 1003 1|13 low
## 466 3 12 1003 1|13 low
## 467 3 12 1003 1|13 low
## 468 3 12 1003 1|13 low
## 469 3 12 1003 1|13 low
## 470 3 12 1003 1|13 low
## 471 3 12 1003 1|13 low
## 472 3 12 1003 1|13 low
## 473 3 12 1003 1|13 low
## 474 3 12 1003 1|13 low
## 475 3 12 1003 1|13 low
## 476 3 12 1003 1|13 low
## 477 3 12 1003 1|13 low
## 478 3 12 1003 1|13 low
## 479 3 12 1003 1|13 low
## 480 3 12 1003 1|13 low
## 481 4 16 1003 1|13 low
## 482 4 16 1003 1|13 low
## 483 4 16 1003 1|13 low
## 484 4 16 1003 1|13 low
## 485 4 16 1003 1|13 low
## 486 4 16 1003 1|13 low
## 487 4 16 1003 1|13 low
## 488 4 16 1003 1|13 low
## 489 4 16 1003 1|13 low
## 490 4 16 1003 1|13 low
## 491 4 16 1003 1|13 low
## 492 4 16 1003 1|13 low
## 493 4 16 1003 1|13 low
## 494 4 16 1003 1|13 low
## 495 4 16 1003 1|13 low
## 496 4 16 1003 1|13 low
## 497 4 16 1003 1|13 low
## 498 4 16 1003 1|13 low
## 499 4 16 1003 1|13 low
## 500 4 16 1003 1|13 low
## 501 4 16 1003 1|13 low
## 502 4 16 1003 1|13 low
## 503 4 16 1003 1|13 low
## 504 4 16 1003 1|13 low
## 505 5 20 1003 1|13 low
## 506 5 20 1003 1|13 low
## 507 5 20 1003 1|13 low
## 508 5 20 1003 1|13 low
## 509 5 20 1003 1|13 low
## 510 5 20 1003 1|13 low
## 511 5 20 1003 1|13 low
## 512 5 20 1003 1|13 low
## 513 5 20 1003 1|13 low
## 514 5 20 1003 1|13 low
## 515 5 20 1003 1|13 low
## 516 5 20 1003 1|13 low
## 517 5 20 1003 1|13 low
## 518 5 20 1003 1|13 low
## 519 5 20 1003 1|13 low
## 520 5 20 1003 1|13 low
## 521 5 20 1003 1|13 low
## 522 5 20 1003 1|13 low
## 523 5 20 1003 1|13 low
## 524 5 20 1003 1|13 low
## 525 5 20 1003 1|13 low
## 526 5 20 1003 1|13 low
## 527 5 20 1003 1|13 low
## 528 5 20 1003 1|13 low
## 529 6 24 1003 1|13 low
## 530 6 24 1003 1|13 low
## 531 6 24 1003 1|13 low
## 532 6 24 1003 1|13 low
## 533 6 24 1003 1|13 low
## 534 6 24 1003 1|13 low
## 535 6 24 1003 1|13 low
## 536 6 24 1003 1|13 low
## 537 6 24 1003 1|13 low
## 538 6 24 1003 1|13 low
## 539 6 24 1003 1|13 low
## 540 6 24 1003 1|13 low
## 541 6 24 1003 1|13 low
## 542 6 24 1003 1|13 low
## 543 6 24 1003 1|13 low
## 544 6 24 1003 1|13 low
## 545 6 24 1003 1|13 low
## 546 6 24 1003 1|13 low
## 547 6 24 1003 1|13 low
## 548 6 24 1003 1|13 low
## 549 6 24 1003 1|13 low
## 550 6 24 1003 1|13 low
## 551 6 24 1003 1|13 low
## 552 6 24 1003 1|13 low
## 553 7 28 1003 1|13 low
## 554 7 28 1003 1|13 low
## 555 7 28 1003 1|13 low
## 556 7 28 1003 1|13 low
## 557 7 28 1003 1|13 low
## 558 7 28 1003 1|13 low
## 559 7 28 1003 1|13 low
## 560 7 28 1003 1|13 low
## 561 7 28 1003 1|13 low
## 562 7 28 1003 1|13 low
## 563 7 28 1003 1|13 low
## 564 7 28 1003 1|13 low
## 565 7 28 1003 1|13 low
## 566 7 28 1003 1|13 low
## 567 7 28 1003 1|13 low
## 568 7 28 1003 1|13 low
## 569 7 28 1003 1|13 low
## 570 7 28 1003 1|13 low
## 571 7 28 1003 1|13 low
## 572 7 28 1003 1|13 low
## 573 7 28 1003 1|13 low
## 574 7 28 1003 1|13 low
## 575 7 28 1003 1|13 low
## 576 7 28 1003 1|13 low
## 577 0 0 1004 1|14 low
## 578 0 0 1004 1|14 low
## 579 0 0 1004 1|14 low
## 580 0 0 1004 1|14 low
## 581 0 0 1004 1|14 low
## 582 0 0 1004 1|14 low
## 583 0 0 1004 1|14 low
## 584 0 0 1004 1|14 low
## 585 0 0 1004 1|14 low
## 586 0 0 1004 1|14 low
## 587 0 0 1004 1|14 low
## 588 0 0 1004 1|14 low
## 589 0 0 1004 1|14 low
## 590 0 0 1004 1|14 low
## 591 0 0 1004 1|14 low
## 592 0 0 1004 1|14 low
## 593 0 0 1004 1|14 low
## 594 0 0 1004 1|14 low
## 595 0 0 1004 1|14 low
## 596 0 0 1004 1|14 low
## 597 0 0 1004 1|14 low
## 598 0 0 1004 1|14 low
## 599 0 0 1004 1|14 low
## 600 0 0 1004 1|14 low
## 601 1 4 1004 1|14 low
## 602 1 4 1004 1|14 low
## 603 1 4 1004 1|14 low
## 604 1 4 1004 1|14 low
## 605 1 4 1004 1|14 low
## 606 1 4 1004 1|14 low
## 607 1 4 1004 1|14 low
## 608 1 4 1004 1|14 low
## 609 1 4 1004 1|14 low
## 610 1 4 1004 1|14 low
## 611 1 4 1004 1|14 low
## 612 1 4 1004 1|14 low
## 613 1 4 1004 1|14 low
## 614 1 4 1004 1|14 low
## 615 1 4 1004 1|14 low
## 616 1 4 1004 1|14 low
## 617 1 4 1004 1|14 low
## 618 1 4 1004 1|14 low
## 619 1 4 1004 1|14 low
## 620 1 4 1004 1|14 low
## 621 1 4 1004 1|14 low
## 622 1 4 1004 1|14 low
## 623 1 4 1004 1|14 low
## 624 1 4 1004 1|14 low
## 625 2 8 1004 1|14 low
## 626 2 8 1004 1|14 low
## 627 2 8 1004 1|14 low
## 628 2 8 1004 1|14 low
## 629 2 8 1004 1|14 low
## 630 2 8 1004 1|14 low
## 631 2 8 1004 1|14 low
## 632 2 8 1004 1|14 low
## 633 2 8 1004 1|14 low
## 634 2 8 1004 1|14 low
## 635 2 8 1004 1|14 low
## 636 2 8 1004 1|14 low
## 637 2 8 1004 1|14 low
## 638 2 8 1004 1|14 low
## 639 2 8 1004 1|14 low
## 640 2 8 1004 1|14 low
## 641 2 8 1004 1|14 low
## 642 2 8 1004 1|14 low
## 643 2 8 1004 1|14 low
## 644 2 8 1004 1|14 low
## 645 2 8 1004 1|14 low
## 646 2 8 1004 1|14 low
## 647 2 8 1004 1|14 low
## 648 2 8 1004 1|14 low
## 649 3 12 1004 1|14 low
## 650 3 12 1004 1|14 low
## 651 3 12 1004 1|14 low
## 652 3 12 1004 1|14 low
## 653 3 12 1004 1|14 low
## 654 3 12 1004 1|14 low
## 655 3 12 1004 1|14 low
## 656 3 12 1004 1|14 low
## 657 3 12 1004 1|14 low
## 658 3 12 1004 1|14 low
## 659 3 12 1004 1|14 low
## 660 3 12 1004 1|14 low
## 661 3 12 1004 1|14 low
## 662 3 12 1004 1|14 low
## 663 3 12 1004 1|14 low
## 664 3 12 1004 1|14 low
## 665 3 12 1004 1|14 low
## 666 3 12 1004 1|14 low
## 667 3 12 1004 1|14 low
## 668 3 12 1004 1|14 low
## 669 3 12 1004 1|14 low
## 670 3 12 1004 1|14 low
## 671 3 12 1004 1|14 low
## 672 3 12 1004 1|14 low
## 673 4 16 1004 1|14 low
## 674 4 16 1004 1|14 low
## 675 4 16 1004 1|14 low
## 676 4 16 1004 1|14 low
## 677 4 16 1004 1|14 low
## 678 4 16 1004 1|14 low
## 679 4 16 1004 1|14 low
## 680 4 16 1004 1|14 low
## 681 4 16 1004 1|14 low
## 682 4 16 1004 1|14 low
## 683 4 16 1004 1|14 low
## 684 4 16 1004 1|14 low
## 685 4 16 1004 1|14 low
## 686 4 16 1004 1|14 low
## 687 4 16 1004 1|14 low
## 688 4 16 1004 1|14 low
## 689 4 16 1004 1|14 low
## 690 4 16 1004 1|14 low
## 691 4 16 1004 1|14 low
## 692 4 16 1004 1|14 low
## 693 4 16 1004 1|14 low
## 694 4 16 1004 1|14 low
## 695 4 16 1004 1|14 low
## 696 4 16 1004 1|14 low
## 697 5 20 1004 1|14 low
## 698 5 20 1004 1|14 low
## 699 5 20 1004 1|14 low
## 700 5 20 1004 1|14 low
## 701 5 20 1004 1|14 low
## 702 5 20 1004 1|14 low
## 703 5 20 1004 1|14 low
## 704 5 20 1004 1|14 low
## 705 5 20 1004 1|14 low
## 706 5 20 1004 1|14 low
## 707 5 20 1004 1|14 low
## 708 5 20 1004 1|14 low
## 709 5 20 1004 1|14 low
## 710 5 20 1004 1|14 low
## 711 5 20 1004 1|14 low
## 712 5 20 1004 1|14 low
## 713 5 20 1004 1|14 low
## 714 5 20 1004 1|14 low
## 715 5 20 1004 1|14 low
## 716 5 20 1004 1|14 low
## 717 5 20 1004 1|14 low
## 718 5 20 1004 1|14 low
## 719 5 20 1004 1|14 low
## 720 5 20 1004 1|14 low
## 721 6 24 1004 1|14 low
## 722 6 24 1004 1|14 low
## 723 6 24 1004 1|14 low
## 724 6 24 1004 1|14 low
## 725 6 24 1004 1|14 low
## 726 6 24 1004 1|14 low
## 727 6 24 1004 1|14 low
## 728 6 24 1004 1|14 low
## 729 6 24 1004 1|14 low
## 730 6 24 1004 1|14 low
## 731 6 24 1004 1|14 low
## 732 6 24 1004 1|14 low
## 733 6 24 1004 1|14 low
## 734 6 24 1004 1|14 low
## 735 6 24 1004 1|14 low
## 736 6 24 1004 1|14 low
## 737 6 24 1004 1|14 low
## 738 6 24 1004 1|14 low
## 739 6 24 1004 1|14 low
## 740 6 24 1004 1|14 low
## 741 6 24 1004 1|14 low
## 742 6 24 1004 1|14 low
## 743 6 24 1004 1|14 low
## 744 6 24 1004 1|14 low
## 745 7 28 1004 1|14 low
## 746 7 28 1004 1|14 low
## 747 7 28 1004 1|14 low
## 748 7 28 1004 1|14 low
## 749 7 28 1004 1|14 low
## 750 7 28 1004 1|14 low
## 751 7 28 1004 1|14 low
## 752 7 28 1004 1|14 low
## 753 7 28 1004 1|14 low
## 754 7 28 1004 1|14 low
## 755 7 28 1004 1|14 low
## 756 7 28 1004 1|14 low
## 757 7 28 1004 1|14 low
## 758 7 28 1004 1|14 low
## 759 7 28 1004 1|14 low
## 760 7 28 1004 1|14 low
## 761 7 28 1004 1|14 low
## 762 7 28 1004 1|14 low
## 763 7 28 1004 1|14 low
## 764 7 28 1004 1|14 low
## 765 7 28 1004 1|14 low
## 766 7 28 1004 1|14 low
## 767 7 28 1004 1|14 low
## 768 7 28 1004 1|14 low
## 769 0 0 1005 1|15 low
## 770 0 0 1005 1|15 low
## 771 0 0 1005 1|15 low
## 772 0 0 1005 1|15 low
## 773 0 0 1005 1|15 low
## 774 0 0 1005 1|15 low
## 775 0 0 1005 1|15 low
## 776 0 0 1005 1|15 low
## 777 0 0 1005 1|15 low
## 778 0 0 1005 1|15 low
## 779 0 0 1005 1|15 low
## 780 0 0 1005 1|15 low
## 781 0 0 1005 1|15 low
## 782 0 0 1005 1|15 low
## 783 0 0 1005 1|15 low
## 784 0 0 1005 1|15 low
## 785 0 0 1005 1|15 low
## 786 0 0 1005 1|15 low
## 787 0 0 1005 1|15 low
## 788 0 0 1005 1|15 low
## 789 0 0 1005 1|15 low
## 790 0 0 1005 1|15 low
## 791 0 0 1005 1|15 low
## 792 0 0 1005 1|15 low
## 793 1 4 1005 1|15 low
## 794 1 4 1005 1|15 low
## 795 1 4 1005 1|15 low
## 796 1 4 1005 1|15 low
## 797 1 4 1005 1|15 low
## 798 1 4 1005 1|15 low
## 799 1 4 1005 1|15 low
## 800 1 4 1005 1|15 low
## 801 1 4 1005 1|15 low
## 802 1 4 1005 1|15 low
## 803 1 4 1005 1|15 low
## 804 1 4 1005 1|15 low
## 805 1 4 1005 1|15 low
## 806 1 4 1005 1|15 low
## 807 1 4 1005 1|15 low
## 808 1 4 1005 1|15 low
## 809 1 4 1005 1|15 low
## 810 1 4 1005 1|15 low
## 811 1 4 1005 1|15 low
## 812 1 4 1005 1|15 low
## 813 1 4 1005 1|15 low
## 814 1 4 1005 1|15 low
## 815 1 4 1005 1|15 low
## 816 1 4 1005 1|15 low
## 817 2 8 1005 1|15 low
## 818 2 8 1005 1|15 low
## 819 2 8 1005 1|15 low
## 820 2 8 1005 1|15 low
## 821 2 8 1005 1|15 low
## 822 2 8 1005 1|15 low
## 823 2 8 1005 1|15 low
## 824 2 8 1005 1|15 low
## 825 2 8 1005 1|15 low
## 826 2 8 1005 1|15 low
## 827 2 8 1005 1|15 low
## 828 2 8 1005 1|15 low
## 829 2 8 1005 1|15 low
## 830 2 8 1005 1|15 low
## 831 2 8 1005 1|15 low
## 832 2 8 1005 1|15 low
## 833 2 8 1005 1|15 low
## 834 2 8 1005 1|15 low
## 835 2 8 1005 1|15 low
## 836 2 8 1005 1|15 low
## 837 2 8 1005 1|15 low
## 838 2 8 1005 1|15 low
## 839 2 8 1005 1|15 low
## 840 2 8 1005 1|15 low
## 841 3 12 1005 1|15 low
## 842 3 12 1005 1|15 low
## 843 3 12 1005 1|15 low
## 844 3 12 1005 1|15 low
## 845 3 12 1005 1|15 low
## 846 3 12 1005 1|15 low
## 847 3 12 1005 1|15 low
## 848 3 12 1005 1|15 low
## 849 3 12 1005 1|15 low
## 850 3 12 1005 1|15 low
## 851 3 12 1005 1|15 low
## 852 3 12 1005 1|15 low
## 853 3 12 1005 1|15 low
## 854 3 12 1005 1|15 low
## 855 3 12 1005 1|15 low
## 856 3 12 1005 1|15 low
## 857 3 12 1005 1|15 low
## 858 3 12 1005 1|15 low
## 859 3 12 1005 1|15 low
## 860 3 12 1005 1|15 low
## 861 3 12 1005 1|15 low
## 862 3 12 1005 1|15 low
## 863 3 12 1005 1|15 low
## 864 3 12 1005 1|15 low
## 865 4 16 1005 1|15 low
## 866 4 16 1005 1|15 low
## 867 4 16 1005 1|15 low
## 868 4 16 1005 1|15 low
## 869 4 16 1005 1|15 low
## 870 4 16 1005 1|15 low
## 871 4 16 1005 1|15 low
## 872 4 16 1005 1|15 low
## 873 4 16 1005 1|15 low
## 874 4 16 1005 1|15 low
## 875 4 16 1005 1|15 low
## 876 4 16 1005 1|15 low
## 877 4 16 1005 1|15 low
## 878 4 16 1005 1|15 low
## 879 4 16 1005 1|15 low
## 880 4 16 1005 1|15 low
## 881 4 16 1005 1|15 low
## 882 4 16 1005 1|15 low
## 883 4 16 1005 1|15 low
## 884 4 16 1005 1|15 low
## 885 4 16 1005 1|15 low
## 886 4 16 1005 1|15 low
## 887 4 16 1005 1|15 low
## 888 4 16 1005 1|15 low
## 889 5 20 1005 1|15 low
## 890 5 20 1005 1|15 low
## 891 5 20 1005 1|15 low
## 892 5 20 1005 1|15 low
## 893 5 20 1005 1|15 low
## 894 5 20 1005 1|15 low
## 895 5 20 1005 1|15 low
## 896 5 20 1005 1|15 low
## 897 5 20 1005 1|15 low
## 898 5 20 1005 1|15 low
## 899 5 20 1005 1|15 low
## 900 5 20 1005 1|15 low
## 901 5 20 1005 1|15 low
## 902 5 20 1005 1|15 low
## 903 5 20 1005 1|15 low
## 904 5 20 1005 1|15 low
## 905 5 20 1005 1|15 low
## 906 5 20 1005 1|15 low
## 907 5 20 1005 1|15 low
## 908 5 20 1005 1|15 low
## 909 5 20 1005 1|15 low
## 910 5 20 1005 1|15 low
## 911 5 20 1005 1|15 low
## 912 5 20 1005 1|15 low
## 913 6 24 1005 1|15 low
## 914 6 24 1005 1|15 low
## 915 6 24 1005 1|15 low
## 916 6 24 1005 1|15 low
## 917 6 24 1005 1|15 low
## 918 6 24 1005 1|15 low
## 919 6 24 1005 1|15 low
## 920 6 24 1005 1|15 low
## 921 6 24 1005 1|15 low
## 922 6 24 1005 1|15 low
## 923 6 24 1005 1|15 low
## 924 6 24 1005 1|15 low
## 925 6 24 1005 1|15 low
## 926 6 24 1005 1|15 low
## 927 6 24 1005 1|15 low
## 928 6 24 1005 1|15 low
## 929 6 24 1005 1|15 low
## 930 6 24 1005 1|15 low
## 931 6 24 1005 1|15 low
## 932 6 24 1005 1|15 low
## 933 6 24 1005 1|15 low
## 934 6 24 1005 1|15 low
## 935 6 24 1005 1|15 low
## 936 6 24 1005 1|15 low
## 937 7 28 1005 1|15 low
## 938 7 28 1005 1|15 low
## 939 7 28 1005 1|15 low
## 940 7 28 1005 1|15 low
## 941 7 28 1005 1|15 low
## 942 7 28 1005 1|15 low
## 943 7 28 1005 1|15 low
## 944 7 28 1005 1|15 low
## 945 7 28 1005 1|15 low
## 946 7 28 1005 1|15 low
## 947 7 28 1005 1|15 low
## 948 7 28 1005 1|15 low
## 949 7 28 1005 1|15 low
## 950 7 28 1005 1|15 low
## 951 7 28 1005 1|15 low
## 952 7 28 1005 1|15 low
## 953 7 28 1005 1|15 low
## 954 7 28 1005 1|15 low
## 955 7 28 1005 1|15 low
## 956 7 28 1005 1|15 low
## 957 7 28 1005 1|15 low
## 958 7 28 1005 1|15 low
## 959 7 28 1005 1|15 low
## 960 7 28 1005 1|15 low
## 961 0 0 1006 2|11 low
## 962 0 0 1006 2|11 low
## 963 0 0 1006 2|11 low
## 964 0 0 1006 2|11 low
## 965 0 0 1006 2|11 low
## 966 0 0 1006 2|11 low
## 967 0 0 1006 2|11 low
## 968 0 0 1006 2|11 low
## 969 0 0 1006 2|11 low
## 970 0 0 1006 2|11 low
## 971 0 0 1006 2|11 low
## 972 0 0 1006 2|11 low
## 973 0 0 1006 2|11 low
## 974 0 0 1006 2|11 low
## 975 0 0 1006 2|11 low
## 976 0 0 1006 2|11 low
## 977 0 0 1006 2|11 low
## 978 0 0 1006 2|11 low
## 979 0 0 1006 2|11 low
## 980 0 0 1006 2|11 low
## 981 0 0 1006 2|11 low
## 982 0 0 1006 2|11 low
## 983 0 0 1006 2|11 low
## 984 0 0 1006 2|11 low
## 985 1 4 1006 2|11 low
## 986 1 4 1006 2|11 low
## 987 1 4 1006 2|11 low
## 988 1 4 1006 2|11 low
## 989 1 4 1006 2|11 low
## 990 1 4 1006 2|11 low
## 991 1 4 1006 2|11 low
## 992 1 4 1006 2|11 low
## 993 1 4 1006 2|11 low
## 994 1 4 1006 2|11 low
## 995 1 4 1006 2|11 low
## 996 1 4 1006 2|11 low
## 997 1 4 1006 2|11 low
## 998 1 4 1006 2|11 low
## 999 1 4 1006 2|11 low
## 1000 1 4 1006 2|11 low
## 1001 1 4 1006 2|11 low
## 1002 1 4 1006 2|11 low
## 1003 1 4 1006 2|11 low
## 1004 1 4 1006 2|11 low
## 1005 1 4 1006 2|11 low
## 1006 1 4 1006 2|11 low
## 1007 1 4 1006 2|11 low
## 1008 1 4 1006 2|11 low
## 1009 2 8 1006 2|11 low
## 1010 2 8 1006 2|11 low
## 1011 2 8 1006 2|11 low
## 1012 2 8 1006 2|11 low
## 1013 2 8 1006 2|11 low
## 1014 2 8 1006 2|11 low
## 1015 2 8 1006 2|11 low
## 1016 2 8 1006 2|11 low
## 1017 2 8 1006 2|11 low
## 1018 2 8 1006 2|11 low
## 1019 2 8 1006 2|11 low
## 1020 2 8 1006 2|11 low
## 1021 2 8 1006 2|11 low
## 1022 2 8 1006 2|11 low
## 1023 2 8 1006 2|11 low
## 1024 2 8 1006 2|11 low
## 1025 2 8 1006 2|11 low
## 1026 2 8 1006 2|11 low
## 1027 2 8 1006 2|11 low
## 1028 2 8 1006 2|11 low
## 1029 2 8 1006 2|11 low
## 1030 2 8 1006 2|11 low
## 1031 2 8 1006 2|11 low
## 1032 2 8 1006 2|11 low
## 1033 3 12 1006 2|11 low
## 1034 3 12 1006 2|11 low
## 1035 3 12 1006 2|11 low
## 1036 3 12 1006 2|11 low
## 1037 3 12 1006 2|11 low
## 1038 3 12 1006 2|11 low
## 1039 3 12 1006 2|11 low
## 1040 3 12 1006 2|11 low
## 1041 3 12 1006 2|11 low
## 1042 3 12 1006 2|11 low
## 1043 3 12 1006 2|11 low
## 1044 3 12 1006 2|11 low
## 1045 3 12 1006 2|11 low
## 1046 3 12 1006 2|11 low
## 1047 3 12 1006 2|11 low
## 1048 3 12 1006 2|11 low
## 1049 3 12 1006 2|11 low
## 1050 3 12 1006 2|11 low
## 1051 3 12 1006 2|11 low
## 1052 3 12 1006 2|11 low
## 1053 3 12 1006 2|11 low
## 1054 3 12 1006 2|11 low
## 1055 3 12 1006 2|11 low
## 1056 3 12 1006 2|11 low
## 1057 4 16 1006 2|11 low
## 1058 4 16 1006 2|11 low
## 1059 4 16 1006 2|11 low
## 1060 4 16 1006 2|11 low
## 1061 4 16 1006 2|11 low
## 1062 4 16 1006 2|11 low
## 1063 4 16 1006 2|11 low
## 1064 4 16 1006 2|11 low
## 1065 4 16 1006 2|11 low
## 1066 4 16 1006 2|11 low
## 1067 4 16 1006 2|11 low
## 1068 4 16 1006 2|11 low
## 1069 4 16 1006 2|11 low
## 1070 4 16 1006 2|11 low
## 1071 4 16 1006 2|11 low
## 1072 4 16 1006 2|11 low
## 1073 4 16 1006 2|11 low
## 1074 4 16 1006 2|11 low
## 1075 4 16 1006 2|11 low
## 1076 4 16 1006 2|11 low
## 1077 4 16 1006 2|11 low
## 1078 4 16 1006 2|11 low
## 1079 4 16 1006 2|11 low
## 1080 4 16 1006 2|11 low
## 1081 5 20 1006 2|11 low
## 1082 5 20 1006 2|11 low
## 1083 5 20 1006 2|11 low
## 1084 5 20 1006 2|11 low
## 1085 5 20 1006 2|11 low
## 1086 5 20 1006 2|11 low
## 1087 5 20 1006 2|11 low
## 1088 5 20 1006 2|11 low
## 1089 5 20 1006 2|11 low
## 1090 5 20 1006 2|11 low
## 1091 5 20 1006 2|11 low
## 1092 5 20 1006 2|11 low
## 1093 5 20 1006 2|11 low
## 1094 5 20 1006 2|11 low
## 1095 5 20 1006 2|11 low
## 1096 5 20 1006 2|11 low
## 1097 5 20 1006 2|11 low
## 1098 5 20 1006 2|11 low
## 1099 5 20 1006 2|11 low
## 1100 5 20 1006 2|11 low
## 1101 5 20 1006 2|11 low
## 1102 5 20 1006 2|11 low
## 1103 5 20 1006 2|11 low
## 1104 5 20 1006 2|11 low
## 1105 6 24 1006 2|11 low
## 1106 6 24 1006 2|11 low
## 1107 6 24 1006 2|11 low
## 1108 6 24 1006 2|11 low
## 1109 6 24 1006 2|11 low
## 1110 6 24 1006 2|11 low
## 1111 6 24 1006 2|11 low
## 1112 6 24 1006 2|11 low
## 1113 6 24 1006 2|11 low
## 1114 6 24 1006 2|11 low
## 1115 6 24 1006 2|11 low
## 1116 6 24 1006 2|11 low
## 1117 6 24 1006 2|11 low
## 1118 6 24 1006 2|11 low
## 1119 6 24 1006 2|11 low
## 1120 6 24 1006 2|11 low
## 1121 6 24 1006 2|11 low
## 1122 6 24 1006 2|11 low
## 1123 6 24 1006 2|11 low
## 1124 6 24 1006 2|11 low
## 1125 6 24 1006 2|11 low
## 1126 6 24 1006 2|11 low
## 1127 6 24 1006 2|11 low
## 1128 6 24 1006 2|11 low
## 1129 7 28 1006 2|11 low
## 1130 7 28 1006 2|11 low
## 1131 7 28 1006 2|11 low
## 1132 7 28 1006 2|11 low
## 1133 7 28 1006 2|11 low
## 1134 7 28 1006 2|11 low
## 1135 7 28 1006 2|11 low
## 1136 7 28 1006 2|11 low
## 1137 7 28 1006 2|11 low
## 1138 7 28 1006 2|11 low
## 1139 7 28 1006 2|11 low
## 1140 7 28 1006 2|11 low
## 1141 7 28 1006 2|11 low
## 1142 7 28 1006 2|11 low
## 1143 7 28 1006 2|11 low
## 1144 7 28 1006 2|11 low
## 1145 7 28 1006 2|11 low
## 1146 7 28 1006 2|11 low
## 1147 7 28 1006 2|11 low
## 1148 7 28 1006 2|11 low
## 1149 7 28 1006 2|11 low
## 1150 7 28 1006 2|11 low
## 1151 7 28 1006 2|11 low
## 1152 7 28 1006 2|11 low
## 1153 0 0 1007 2|12 low
## 1154 0 0 1007 2|12 low
## 1155 0 0 1007 2|12 low
## 1156 0 0 1007 2|12 low
## 1157 0 0 1007 2|12 low
## 1158 0 0 1007 2|12 low
## 1159 0 0 1007 2|12 low
## 1160 0 0 1007 2|12 low
## 1161 0 0 1007 2|12 low
## 1162 0 0 1007 2|12 low
## 1163 0 0 1007 2|12 low
## 1164 0 0 1007 2|12 low
## 1165 0 0 1007 2|12 low
## 1166 0 0 1007 2|12 low
## 1167 0 0 1007 2|12 low
## 1168 0 0 1007 2|12 low
## 1169 0 0 1007 2|12 low
## 1170 0 0 1007 2|12 low
## 1171 0 0 1007 2|12 low
## 1172 0 0 1007 2|12 low
## 1173 0 0 1007 2|12 low
## 1174 0 0 1007 2|12 low
## 1175 0 0 1007 2|12 low
## 1176 0 0 1007 2|12 low
## 1177 1 4 1007 2|12 low
## 1178 1 4 1007 2|12 low
## 1179 1 4 1007 2|12 low
## 1180 1 4 1007 2|12 low
## 1181 1 4 1007 2|12 low
## 1182 1 4 1007 2|12 low
## 1183 1 4 1007 2|12 low
## 1184 1 4 1007 2|12 low
## 1185 1 4 1007 2|12 low
## 1186 1 4 1007 2|12 low
## 1187 1 4 1007 2|12 low
## 1188 1 4 1007 2|12 low
## 1189 1 4 1007 2|12 low
## 1190 1 4 1007 2|12 low
## 1191 1 4 1007 2|12 low
## 1192 1 4 1007 2|12 low
## 1193 1 4 1007 2|12 low
## 1194 1 4 1007 2|12 low
## 1195 1 4 1007 2|12 low
## 1196 1 4 1007 2|12 low
## 1197 1 4 1007 2|12 low
## 1198 1 4 1007 2|12 low
## 1199 1 4 1007 2|12 low
## 1200 1 4 1007 2|12 low
## 1201 2 8 1007 2|12 low
## 1202 2 8 1007 2|12 low
## 1203 2 8 1007 2|12 low
## 1204 2 8 1007 2|12 low
## 1205 2 8 1007 2|12 low
## 1206 2 8 1007 2|12 low
## 1207 2 8 1007 2|12 low
## 1208 2 8 1007 2|12 low
## 1209 2 8 1007 2|12 low
## 1210 2 8 1007 2|12 low
## 1211 2 8 1007 2|12 low
## 1212 2 8 1007 2|12 low
## 1213 2 8 1007 2|12 low
## 1214 2 8 1007 2|12 low
## 1215 2 8 1007 2|12 low
## 1216 2 8 1007 2|12 low
## 1217 2 8 1007 2|12 low
## 1218 2 8 1007 2|12 low
## 1219 2 8 1007 2|12 low
## 1220 2 8 1007 2|12 low
## 1221 2 8 1007 2|12 low
## 1222 2 8 1007 2|12 low
## 1223 2 8 1007 2|12 low
## 1224 2 8 1007 2|12 low
## 1225 3 12 1007 2|12 low
## 1226 3 12 1007 2|12 low
## 1227 3 12 1007 2|12 low
## 1228 3 12 1007 2|12 low
## 1229 3 12 1007 2|12 low
## 1230 3 12 1007 2|12 low
## 1231 3 12 1007 2|12 low
## 1232 3 12 1007 2|12 low
## 1233 3 12 1007 2|12 low
## 1234 3 12 1007 2|12 low
## 1235 3 12 1007 2|12 low
## 1236 3 12 1007 2|12 low
## 1237 3 12 1007 2|12 low
## 1238 3 12 1007 2|12 low
## 1239 3 12 1007 2|12 low
## 1240 3 12 1007 2|12 low
## 1241 3 12 1007 2|12 low
## 1242 3 12 1007 2|12 low
## 1243 3 12 1007 2|12 low
## 1244 3 12 1007 2|12 low
## 1245 3 12 1007 2|12 low
## 1246 3 12 1007 2|12 low
## 1247 3 12 1007 2|12 low
## 1248 3 12 1007 2|12 low
## 1249 4 16 1007 2|12 low
## 1250 4 16 1007 2|12 low
## 1251 4 16 1007 2|12 low
## 1252 4 16 1007 2|12 low
## 1253 4 16 1007 2|12 low
## 1254 4 16 1007 2|12 low
## 1255 4 16 1007 2|12 low
## 1256 4 16 1007 2|12 low
## 1257 4 16 1007 2|12 low
## 1258 4 16 1007 2|12 low
## 1259 4 16 1007 2|12 low
## 1260 4 16 1007 2|12 low
## 1261 4 16 1007 2|12 low
## 1262 4 16 1007 2|12 low
## 1263 4 16 1007 2|12 low
## 1264 4 16 1007 2|12 low
## 1265 4 16 1007 2|12 low
## 1266 4 16 1007 2|12 low
## 1267 4 16 1007 2|12 low
## 1268 4 16 1007 2|12 low
## 1269 4 16 1007 2|12 low
## 1270 4 16 1007 2|12 low
## 1271 4 16 1007 2|12 low
## 1272 4 16 1007 2|12 low
## 1273 5 20 1007 2|12 low
## 1274 5 20 1007 2|12 low
## 1275 5 20 1007 2|12 low
## 1276 5 20 1007 2|12 low
## 1277 5 20 1007 2|12 low
## 1278 5 20 1007 2|12 low
## 1279 5 20 1007 2|12 low
## 1280 5 20 1007 2|12 low
## 1281 5 20 1007 2|12 low
## 1282 5 20 1007 2|12 low
## 1283 5 20 1007 2|12 low
## 1284 5 20 1007 2|12 low
## 1285 5 20 1007 2|12 low
## 1286 5 20 1007 2|12 low
## 1287 5 20 1007 2|12 low
## 1288 5 20 1007 2|12 low
## 1289 5 20 1007 2|12 low
## 1290 5 20 1007 2|12 low
## 1291 5 20 1007 2|12 low
## 1292 5 20 1007 2|12 low
## 1293 5 20 1007 2|12 low
## 1294 5 20 1007 2|12 low
## 1295 5 20 1007 2|12 low
## 1296 5 20 1007 2|12 low
## 1297 6 24 1007 2|12 low
## 1298 6 24 1007 2|12 low
## 1299 6 24 1007 2|12 low
## 1300 6 24 1007 2|12 low
## 1301 6 24 1007 2|12 low
## 1302 6 24 1007 2|12 low
## 1303 6 24 1007 2|12 low
## 1304 6 24 1007 2|12 low
## 1305 6 24 1007 2|12 low
## 1306 6 24 1007 2|12 low
## 1307 6 24 1007 2|12 low
## 1308 6 24 1007 2|12 low
## 1309 6 24 1007 2|12 low
## 1310 6 24 1007 2|12 low
## 1311 6 24 1007 2|12 low
## 1312 6 24 1007 2|12 low
## 1313 6 24 1007 2|12 low
## 1314 6 24 1007 2|12 low
## 1315 6 24 1007 2|12 low
## 1316 6 24 1007 2|12 low
## 1317 6 24 1007 2|12 low
## 1318 6 24 1007 2|12 low
## 1319 6 24 1007 2|12 low
## 1320 6 24 1007 2|12 low
## 1321 7 28 1007 2|12 low
## 1322 7 28 1007 2|12 low
## 1323 7 28 1007 2|12 low
## 1324 7 28 1007 2|12 low
## 1325 7 28 1007 2|12 low
## 1326 7 28 1007 2|12 low
## 1327 7 28 1007 2|12 low
## 1328 7 28 1007 2|12 low
## 1329 7 28 1007 2|12 low
## 1330 7 28 1007 2|12 low
## 1331 7 28 1007 2|12 low
## 1332 7 28 1007 2|12 low
## 1333 7 28 1007 2|12 low
## 1334 7 28 1007 2|12 low
## 1335 7 28 1007 2|12 low
## 1336 7 28 1007 2|12 low
## 1337 7 28 1007 2|12 low
## 1338 7 28 1007 2|12 low
## 1339 7 28 1007 2|12 low
## 1340 7 28 1007 2|12 low
## 1341 7 28 1007 2|12 low
## 1342 7 28 1007 2|12 low
## 1343 7 28 1007 2|12 low
## 1344 7 28 1007 2|12 low
## 1345 0 0 1008 2|13 low
## 1346 0 0 1008 2|13 low
## 1347 0 0 1008 2|13 low
## 1348 0 0 1008 2|13 low
## 1349 0 0 1008 2|13 low
## 1350 0 0 1008 2|13 low
## 1351 0 0 1008 2|13 low
## 1352 0 0 1008 2|13 low
## 1353 0 0 1008 2|13 low
## 1354 0 0 1008 2|13 low
## 1355 0 0 1008 2|13 low
## 1356 0 0 1008 2|13 low
## 1357 0 0 1008 2|13 low
## 1358 0 0 1008 2|13 low
## 1359 0 0 1008 2|13 low
## 1360 0 0 1008 2|13 low
## 1361 0 0 1008 2|13 low
## 1362 0 0 1008 2|13 low
## 1363 0 0 1008 2|13 low
## 1364 0 0 1008 2|13 low
## 1365 0 0 1008 2|13 low
## 1366 0 0 1008 2|13 low
## 1367 0 0 1008 2|13 low
## 1368 0 0 1008 2|13 low
## 1369 1 4 1008 2|13 low
## 1370 1 4 1008 2|13 low
## 1371 1 4 1008 2|13 low
## 1372 1 4 1008 2|13 low
## 1373 1 4 1008 2|13 low
## 1374 1 4 1008 2|13 low
## 1375 1 4 1008 2|13 low
## 1376 1 4 1008 2|13 low
## 1377 1 4 1008 2|13 low
## 1378 1 4 1008 2|13 low
## 1379 1 4 1008 2|13 low
## 1380 1 4 1008 2|13 low
## 1381 1 4 1008 2|13 low
## 1382 1 4 1008 2|13 low
## 1383 1 4 1008 2|13 low
## 1384 1 4 1008 2|13 low
## 1385 1 4 1008 2|13 low
## 1386 1 4 1008 2|13 low
## 1387 1 4 1008 2|13 low
## 1388 1 4 1008 2|13 low
## 1389 1 4 1008 2|13 low
## 1390 1 4 1008 2|13 low
## 1391 1 4 1008 2|13 low
## 1392 1 4 1008 2|13 low
## 1393 2 8 1008 2|13 low
## 1394 2 8 1008 2|13 low
## 1395 2 8 1008 2|13 low
## 1396 2 8 1008 2|13 low
## 1397 2 8 1008 2|13 low
## 1398 2 8 1008 2|13 low
## 1399 2 8 1008 2|13 low
## 1400 2 8 1008 2|13 low
## 1401 2 8 1008 2|13 low
## 1402 2 8 1008 2|13 low
## 1403 2 8 1008 2|13 low
## 1404 2 8 1008 2|13 low
## 1405 2 8 1008 2|13 low
## 1406 2 8 1008 2|13 low
## 1407 2 8 1008 2|13 low
## 1408 2 8 1008 2|13 low
## 1409 2 8 1008 2|13 low
## 1410 2 8 1008 2|13 low
## 1411 2 8 1008 2|13 low
## 1412 2 8 1008 2|13 low
## 1413 2 8 1008 2|13 low
## 1414 2 8 1008 2|13 low
## 1415 2 8 1008 2|13 low
## 1416 2 8 1008 2|13 low
## 1417 3 12 1008 2|13 low
## 1418 3 12 1008 2|13 low
## 1419 3 12 1008 2|13 low
## 1420 3 12 1008 2|13 low
## 1421 3 12 1008 2|13 low
## 1422 3 12 1008 2|13 low
## 1423 3 12 1008 2|13 low
## 1424 3 12 1008 2|13 low
## 1425 3 12 1008 2|13 low
## 1426 3 12 1008 2|13 low
## 1427 3 12 1008 2|13 low
## 1428 3 12 1008 2|13 low
## 1429 3 12 1008 2|13 low
## 1430 3 12 1008 2|13 low
## 1431 3 12 1008 2|13 low
## 1432 3 12 1008 2|13 low
## 1433 3 12 1008 2|13 low
## 1434 3 12 1008 2|13 low
## 1435 3 12 1008 2|13 low
## 1436 3 12 1008 2|13 low
## 1437 3 12 1008 2|13 low
## 1438 3 12 1008 2|13 low
## 1439 3 12 1008 2|13 low
## 1440 3 12 1008 2|13 low
## 1441 4 16 1008 2|13 low
## 1442 4 16 1008 2|13 low
## 1443 4 16 1008 2|13 low
## 1444 4 16 1008 2|13 low
## 1445 4 16 1008 2|13 low
## 1446 4 16 1008 2|13 low
## 1447 4 16 1008 2|13 low
## 1448 4 16 1008 2|13 low
## 1449 4 16 1008 2|13 low
## 1450 4 16 1008 2|13 low
## 1451 4 16 1008 2|13 low
## 1452 4 16 1008 2|13 low
## 1453 4 16 1008 2|13 low
## 1454 4 16 1008 2|13 low
## 1455 4 16 1008 2|13 low
## 1456 4 16 1008 2|13 low
## 1457 4 16 1008 2|13 low
## 1458 4 16 1008 2|13 low
## 1459 4 16 1008 2|13 low
## 1460 4 16 1008 2|13 low
## 1461 4 16 1008 2|13 low
## 1462 4 16 1008 2|13 low
## 1463 4 16 1008 2|13 low
## 1464 4 16 1008 2|13 low
## 1465 5 20 1008 2|13 low
## 1466 5 20 1008 2|13 low
## 1467 5 20 1008 2|13 low
## 1468 5 20 1008 2|13 low
## 1469 5 20 1008 2|13 low
## 1470 5 20 1008 2|13 low
## 1471 5 20 1008 2|13 low
## 1472 5 20 1008 2|13 low
## 1473 5 20 1008 2|13 low
## 1474 5 20 1008 2|13 low
## 1475 5 20 1008 2|13 low
## 1476 5 20 1008 2|13 low
## 1477 5 20 1008 2|13 low
## 1478 5 20 1008 2|13 low
## 1479 5 20 1008 2|13 low
## 1480 5 20 1008 2|13 low
## 1481 5 20 1008 2|13 low
## 1482 5 20 1008 2|13 low
## 1483 5 20 1008 2|13 low
## 1484 5 20 1008 2|13 low
## 1485 5 20 1008 2|13 low
## 1486 5 20 1008 2|13 low
## 1487 5 20 1008 2|13 low
## 1488 5 20 1008 2|13 low
## 1489 6 24 1008 2|13 low
## 1490 6 24 1008 2|13 low
## 1491 6 24 1008 2|13 low
## 1492 6 24 1008 2|13 low
## 1493 6 24 1008 2|13 low
## 1494 6 24 1008 2|13 low
## 1495 6 24 1008 2|13 low
## 1496 6 24 1008 2|13 low
## 1497 6 24 1008 2|13 low
## 1498 6 24 1008 2|13 low
## 1499 6 24 1008 2|13 low
## 1500 6 24 1008 2|13 low
## 1501 6 24 1008 2|13 low
## 1502 6 24 1008 2|13 low
## 1503 6 24 1008 2|13 low
## 1504 6 24 1008 2|13 low
## 1505 6 24 1008 2|13 low
## 1506 6 24 1008 2|13 low
## 1507 6 24 1008 2|13 low
## 1508 6 24 1008 2|13 low
## 1509 6 24 1008 2|13 low
## 1510 6 24 1008 2|13 low
## 1511 6 24 1008 2|13 low
## 1512 6 24 1008 2|13 low
## 1513 7 28 1008 2|13 low
## 1514 7 28 1008 2|13 low
## 1515 7 28 1008 2|13 low
## 1516 7 28 1008 2|13 low
## 1517 7 28 1008 2|13 low
## 1518 7 28 1008 2|13 low
## 1519 7 28 1008 2|13 low
## 1520 7 28 1008 2|13 low
## 1521 7 28 1008 2|13 low
## 1522 7 28 1008 2|13 low
## 1523 7 28 1008 2|13 low
## 1524 7 28 1008 2|13 low
## 1525 7 28 1008 2|13 low
## 1526 7 28 1008 2|13 low
## 1527 7 28 1008 2|13 low
## 1528 7 28 1008 2|13 low
## 1529 7 28 1008 2|13 low
## 1530 7 28 1008 2|13 low
## 1531 7 28 1008 2|13 low
## 1532 7 28 1008 2|13 low
## 1533 7 28 1008 2|13 low
## 1534 7 28 1008 2|13 low
## 1535 7 28 1008 2|13 low
## 1536 7 28 1008 2|13 low
## 1537 0 0 1009 2|14 low
## 1538 0 0 1009 2|14 low
## 1539 0 0 1009 2|14 low
## 1540 0 0 1009 2|14 low
## 1541 0 0 1009 2|14 low
## 1542 0 0 1009 2|14 low
## 1543 0 0 1009 2|14 low
## 1544 0 0 1009 2|14 low
## 1545 0 0 1009 2|14 low
## 1546 0 0 1009 2|14 low
## 1547 0 0 1009 2|14 low
## 1548 0 0 1009 2|14 low
## 1549 0 0 1009 2|14 low
## 1550 0 0 1009 2|14 low
## 1551 0 0 1009 2|14 low
## 1552 0 0 1009 2|14 low
## 1553 0 0 1009 2|14 low
## 1554 0 0 1009 2|14 low
## 1555 0 0 1009 2|14 low
## 1556 0 0 1009 2|14 low
## 1557 0 0 1009 2|14 low
## 1558 0 0 1009 2|14 low
## 1559 0 0 1009 2|14 low
## 1560 0 0 1009 2|14 low
## 1561 1 4 1009 2|14 low
## 1562 1 4 1009 2|14 low
## 1563 1 4 1009 2|14 low
## 1564 1 4 1009 2|14 low
## 1565 1 4 1009 2|14 low
## 1566 1 4 1009 2|14 low
## 1567 1 4 1009 2|14 low
## 1568 1 4 1009 2|14 low
## 1569 1 4 1009 2|14 low
## 1570 1 4 1009 2|14 low
## 1571 1 4 1009 2|14 low
## 1572 1 4 1009 2|14 low
## 1573 1 4 1009 2|14 low
## 1574 1 4 1009 2|14 low
## 1575 1 4 1009 2|14 low
## 1576 1 4 1009 2|14 low
## 1577 1 4 1009 2|14 low
## 1578 1 4 1009 2|14 low
## 1579 1 4 1009 2|14 low
## 1580 1 4 1009 2|14 low
## 1581 1 4 1009 2|14 low
## 1582 1 4 1009 2|14 low
## 1583 1 4 1009 2|14 low
## 1584 1 4 1009 2|14 low
## 1585 2 8 1009 2|14 low
## 1586 2 8 1009 2|14 low
## 1587 2 8 1009 2|14 low
## 1588 2 8 1009 2|14 low
## 1589 2 8 1009 2|14 low
## 1590 2 8 1009 2|14 low
## 1591 2 8 1009 2|14 low
## 1592 2 8 1009 2|14 low
## 1593 2 8 1009 2|14 low
## 1594 2 8 1009 2|14 low
## 1595 2 8 1009 2|14 low
## 1596 2 8 1009 2|14 low
## 1597 2 8 1009 2|14 low
## 1598 2 8 1009 2|14 low
## 1599 2 8 1009 2|14 low
## 1600 2 8 1009 2|14 low
## 1601 2 8 1009 2|14 low
## 1602 2 8 1009 2|14 low
## 1603 2 8 1009 2|14 low
## 1604 2 8 1009 2|14 low
## 1605 2 8 1009 2|14 low
## 1606 2 8 1009 2|14 low
## 1607 2 8 1009 2|14 low
## 1608 2 8 1009 2|14 low
## 1609 3 12 1009 2|14 low
## 1610 3 12 1009 2|14 low
## 1611 3 12 1009 2|14 low
## 1612 3 12 1009 2|14 low
## 1613 3 12 1009 2|14 low
## 1614 3 12 1009 2|14 low
## 1615 3 12 1009 2|14 low
## 1616 3 12 1009 2|14 low
## 1617 3 12 1009 2|14 low
## 1618 3 12 1009 2|14 low
## 1619 3 12 1009 2|14 low
## 1620 3 12 1009 2|14 low
## 1621 3 12 1009 2|14 low
## 1622 3 12 1009 2|14 low
## 1623 3 12 1009 2|14 low
## 1624 3 12 1009 2|14 low
## 1625 3 12 1009 2|14 low
## 1626 3 12 1009 2|14 low
## 1627 3 12 1009 2|14 low
## 1628 3 12 1009 2|14 low
## 1629 3 12 1009 2|14 low
## 1630 3 12 1009 2|14 low
## 1631 3 12 1009 2|14 low
## 1632 3 12 1009 2|14 low
## 1633 4 16 1009 2|14 low
## 1634 4 16 1009 2|14 low
## 1635 4 16 1009 2|14 low
## 1636 4 16 1009 2|14 low
## 1637 4 16 1009 2|14 low
## 1638 4 16 1009 2|14 low
## 1639 4 16 1009 2|14 low
## 1640 4 16 1009 2|14 low
## 1641 4 16 1009 2|14 low
## 1642 4 16 1009 2|14 low
## 1643 4 16 1009 2|14 low
## 1644 4 16 1009 2|14 low
## 1645 4 16 1009 2|14 low
## 1646 4 16 1009 2|14 low
## 1647 4 16 1009 2|14 low
## 1648 4 16 1009 2|14 low
## 1649 4 16 1009 2|14 low
## 1650 4 16 1009 2|14 low
## 1651 4 16 1009 2|14 low
## 1652 4 16 1009 2|14 low
## 1653 4 16 1009 2|14 low
## 1654 4 16 1009 2|14 low
## 1655 4 16 1009 2|14 low
## 1656 4 16 1009 2|14 low
## 1657 5 20 1009 2|14 low
## 1658 5 20 1009 2|14 low
## 1659 5 20 1009 2|14 low
## 1660 5 20 1009 2|14 low
## 1661 5 20 1009 2|14 low
## 1662 5 20 1009 2|14 low
## 1663 5 20 1009 2|14 low
## 1664 5 20 1009 2|14 low
## 1665 5 20 1009 2|14 low
## 1666 5 20 1009 2|14 low
## 1667 5 20 1009 2|14 low
## 1668 5 20 1009 2|14 low
## 1669 5 20 1009 2|14 low
## 1670 5 20 1009 2|14 low
## 1671 5 20 1009 2|14 low
## 1672 5 20 1009 2|14 low
## 1673 5 20 1009 2|14 low
## 1674 5 20 1009 2|14 low
## 1675 5 20 1009 2|14 low
## 1676 5 20 1009 2|14 low
## 1677 5 20 1009 2|14 low
## 1678 5 20 1009 2|14 low
## 1679 5 20 1009 2|14 low
## 1680 5 20 1009 2|14 low
## 1681 6 24 1009 2|14 low
## 1682 6 24 1009 2|14 low
## 1683 6 24 1009 2|14 low
## 1684 6 24 1009 2|14 low
## 1685 6 24 1009 2|14 low
## 1686 6 24 1009 2|14 low
## 1687 6 24 1009 2|14 low
## 1688 6 24 1009 2|14 low
## 1689 6 24 1009 2|14 low
## 1690 6 24 1009 2|14 low
## 1691 6 24 1009 2|14 low
## 1692 6 24 1009 2|14 low
## 1693 6 24 1009 2|14 low
## 1694 6 24 1009 2|14 low
## 1695 6 24 1009 2|14 low
## 1696 6 24 1009 2|14 low
## 1697 6 24 1009 2|14 low
## 1698 6 24 1009 2|14 low
## 1699 6 24 1009 2|14 low
## 1700 6 24 1009 2|14 low
## 1701 6 24 1009 2|14 low
## 1702 6 24 1009 2|14 low
## 1703 6 24 1009 2|14 low
## 1704 6 24 1009 2|14 low
## 1705 7 28 1009 2|14 low
## 1706 7 28 1009 2|14 low
## 1707 7 28 1009 2|14 low
## 1708 7 28 1009 2|14 low
## 1709 7 28 1009 2|14 low
## 1710 7 28 1009 2|14 low
## 1711 7 28 1009 2|14 low
## 1712 7 28 1009 2|14 low
## 1713 7 28 1009 2|14 low
## 1714 7 28 1009 2|14 low
## 1715 7 28 1009 2|14 low
## 1716 7 28 1009 2|14 low
## 1717 7 28 1009 2|14 low
## 1718 7 28 1009 2|14 low
## 1719 7 28 1009 2|14 low
## 1720 7 28 1009 2|14 low
## 1721 7 28 1009 2|14 low
## 1722 7 28 1009 2|14 low
## 1723 7 28 1009 2|14 low
## 1724 7 28 1009 2|14 low
## 1725 7 28 1009 2|14 low
## 1726 7 28 1009 2|14 low
## 1727 7 28 1009 2|14 low
## 1728 7 28 1009 2|14 low
## 1729 0 0 1010 2|15 low
## 1730 0 0 1010 2|15 low
## 1731 0 0 1010 2|15 low
## 1732 0 0 1010 2|15 low
## 1733 0 0 1010 2|15 low
## 1734 0 0 1010 2|15 low
## 1735 0 0 1010 2|15 low
## 1736 0 0 1010 2|15 low
## 1737 0 0 1010 2|15 low
## 1738 0 0 1010 2|15 low
## 1739 0 0 1010 2|15 low
## 1740 0 0 1010 2|15 low
## 1741 0 0 1010 2|15 low
## 1742 0 0 1010 2|15 low
## 1743 0 0 1010 2|15 low
## 1744 0 0 1010 2|15 low
## 1745 0 0 1010 2|15 low
## 1746 0 0 1010 2|15 low
## 1747 0 0 1010 2|15 low
## 1748 0 0 1010 2|15 low
## 1749 0 0 1010 2|15 low
## 1750 0 0 1010 2|15 low
## 1751 0 0 1010 2|15 low
## 1752 0 0 1010 2|15 low
## 1753 1 4 1010 2|15 low
## 1754 1 4 1010 2|15 low
## 1755 1 4 1010 2|15 low
## 1756 1 4 1010 2|15 low
## 1757 1 4 1010 2|15 low
## 1758 1 4 1010 2|15 low
## 1759 1 4 1010 2|15 low
## 1760 1 4 1010 2|15 low
## 1761 1 4 1010 2|15 low
## 1762 1 4 1010 2|15 low
## 1763 1 4 1010 2|15 low
## 1764 1 4 1010 2|15 low
## 1765 1 4 1010 2|15 low
## 1766 1 4 1010 2|15 low
## 1767 1 4 1010 2|15 low
## 1768 1 4 1010 2|15 low
## 1769 1 4 1010 2|15 low
## 1770 1 4 1010 2|15 low
## 1771 1 4 1010 2|15 low
## 1772 1 4 1010 2|15 low
## 1773 1 4 1010 2|15 low
## 1774 1 4 1010 2|15 low
## 1775 1 4 1010 2|15 low
## 1776 1 4 1010 2|15 low
## 1777 2 8 1010 2|15 low
## 1778 2 8 1010 2|15 low
## 1779 2 8 1010 2|15 low
## 1780 2 8 1010 2|15 low
## 1781 2 8 1010 2|15 low
## 1782 2 8 1010 2|15 low
## 1783 2 8 1010 2|15 low
## 1784 2 8 1010 2|15 low
## 1785 2 8 1010 2|15 low
## 1786 2 8 1010 2|15 low
## 1787 2 8 1010 2|15 low
## 1788 2 8 1010 2|15 low
## 1789 2 8 1010 2|15 low
## 1790 2 8 1010 2|15 low
## 1791 2 8 1010 2|15 low
## 1792 2 8 1010 2|15 low
## 1793 2 8 1010 2|15 low
## 1794 2 8 1010 2|15 low
## 1795 2 8 1010 2|15 low
## 1796 2 8 1010 2|15 low
## 1797 2 8 1010 2|15 low
## 1798 2 8 1010 2|15 low
## 1799 2 8 1010 2|15 low
## 1800 2 8 1010 2|15 low
## 1801 3 12 1010 2|15 low
## 1802 3 12 1010 2|15 low
## 1803 3 12 1010 2|15 low
## 1804 3 12 1010 2|15 low
## 1805 3 12 1010 2|15 low
## 1806 3 12 1010 2|15 low
## 1807 3 12 1010 2|15 low
## 1808 3 12 1010 2|15 low
## 1809 3 12 1010 2|15 low
## 1810 3 12 1010 2|15 low
## 1811 3 12 1010 2|15 low
## 1812 3 12 1010 2|15 low
## 1813 3 12 1010 2|15 low
## 1814 3 12 1010 2|15 low
## 1815 3 12 1010 2|15 low
## 1816 3 12 1010 2|15 low
## 1817 3 12 1010 2|15 low
## 1818 3 12 1010 2|15 low
## 1819 3 12 1010 2|15 low
## 1820 3 12 1010 2|15 low
## 1821 3 12 1010 2|15 low
## 1822 3 12 1010 2|15 low
## 1823 3 12 1010 2|15 low
## 1824 3 12 1010 2|15 low
## 1825 4 16 1010 2|15 low
## 1826 4 16 1010 2|15 low
## 1827 4 16 1010 2|15 low
## 1828 4 16 1010 2|15 low
## 1829 4 16 1010 2|15 low
## 1830 4 16 1010 2|15 low
## 1831 4 16 1010 2|15 low
## 1832 4 16 1010 2|15 low
## 1833 4 16 1010 2|15 low
## 1834 4 16 1010 2|15 low
## 1835 4 16 1010 2|15 low
## 1836 4 16 1010 2|15 low
## 1837 4 16 1010 2|15 low
## 1838 4 16 1010 2|15 low
## 1839 4 16 1010 2|15 low
## 1840 4 16 1010 2|15 low
## 1841 4 16 1010 2|15 low
## 1842 4 16 1010 2|15 low
## 1843 4 16 1010 2|15 low
## 1844 4 16 1010 2|15 low
## 1845 4 16 1010 2|15 low
## 1846 4 16 1010 2|15 low
## 1847 4 16 1010 2|15 low
## 1848 4 16 1010 2|15 low
## 1849 5 20 1010 2|15 low
## 1850 5 20 1010 2|15 low
## 1851 5 20 1010 2|15 low
## 1852 5 20 1010 2|15 low
## 1853 5 20 1010 2|15 low
## 1854 5 20 1010 2|15 low
## 1855 5 20 1010 2|15 low
## 1856 5 20 1010 2|15 low
## 1857 5 20 1010 2|15 low
## 1858 5 20 1010 2|15 low
## 1859 5 20 1010 2|15 low
## 1860 5 20 1010 2|15 low
## 1861 5 20 1010 2|15 low
## 1862 5 20 1010 2|15 low
## 1863 5 20 1010 2|15 low
## 1864 5 20 1010 2|15 low
## 1865 5 20 1010 2|15 low
## 1866 5 20 1010 2|15 low
## 1867 5 20 1010 2|15 low
## 1868 5 20 1010 2|15 low
## 1869 5 20 1010 2|15 low
## 1870 5 20 1010 2|15 low
## 1871 5 20 1010 2|15 low
## 1872 5 20 1010 2|15 low
## 1873 6 24 1010 2|15 low
## 1874 6 24 1010 2|15 low
## 1875 6 24 1010 2|15 low
## 1876 6 24 1010 2|15 low
## 1877 6 24 1010 2|15 low
## 1878 6 24 1010 2|15 low
## 1879 6 24 1010 2|15 low
## 1880 6 24 1010 2|15 low
## 1881 6 24 1010 2|15 low
## 1882 6 24 1010 2|15 low
## 1883 6 24 1010 2|15 low
## 1884 6 24 1010 2|15 low
## 1885 6 24 1010 2|15 low
## 1886 6 24 1010 2|15 low
## 1887 6 24 1010 2|15 low
## 1888 6 24 1010 2|15 low
## 1889 6 24 1010 2|15 low
## 1890 6 24 1010 2|15 low
## 1891 6 24 1010 2|15 low
## 1892 6 24 1010 2|15 low
## 1893 6 24 1010 2|15 low
## 1894 6 24 1010 2|15 low
## 1895 6 24 1010 2|15 low
## 1896 6 24 1010 2|15 low
## 1897 7 28 1010 2|15 low
## 1898 7 28 1010 2|15 low
## 1899 7 28 1010 2|15 low
## 1900 7 28 1010 2|15 low
## 1901 7 28 1010 2|15 low
## 1902 7 28 1010 2|15 low
## 1903 7 28 1010 2|15 low
## 1904 7 28 1010 2|15 low
## 1905 7 28 1010 2|15 low
## 1906 7 28 1010 2|15 low
## 1907 7 28 1010 2|15 low
## 1908 7 28 1010 2|15 low
## 1909 7 28 1010 2|15 low
## 1910 7 28 1010 2|15 low
## 1911 7 28 1010 2|15 low
## 1912 7 28 1010 2|15 low
## 1913 7 28 1010 2|15 low
## 1914 7 28 1010 2|15 low
## 1915 7 28 1010 2|15 low
## 1916 7 28 1010 2|15 low
## 1917 7 28 1010 2|15 low
## 1918 7 28 1010 2|15 low
## 1919 7 28 1010 2|15 low
## 1920 7 28 1010 2|15 low
## 1921 0 0 1011 3|11 low
## 1922 0 0 1011 3|11 low
## 1923 0 0 1011 3|11 low
## 1924 0 0 1011 3|11 low
## 1925 0 0 1011 3|11 low
## 1926 0 0 1011 3|11 low
## 1927 0 0 1011 3|11 low
## 1928 0 0 1011 3|11 low
## 1929 0 0 1011 3|11 low
## 1930 0 0 1011 3|11 low
## 1931 0 0 1011 3|11 low
## 1932 0 0 1011 3|11 low
## 1933 0 0 1011 3|11 low
## 1934 0 0 1011 3|11 low
## 1935 0 0 1011 3|11 low
## 1936 0 0 1011 3|11 low
## 1937 0 0 1011 3|11 low
## 1938 0 0 1011 3|11 low
## 1939 0 0 1011 3|11 low
## 1940 0 0 1011 3|11 low
## 1941 0 0 1011 3|11 low
## 1942 0 0 1011 3|11 low
## 1943 0 0 1011 3|11 low
## 1944 0 0 1011 3|11 low
## 1945 1 4 1011 3|11 low
## 1946 1 4 1011 3|11 low
## 1947 1 4 1011 3|11 low
## 1948 1 4 1011 3|11 low
## 1949 1 4 1011 3|11 low
## 1950 1 4 1011 3|11 low
## 1951 1 4 1011 3|11 low
## 1952 1 4 1011 3|11 low
## 1953 1 4 1011 3|11 low
## 1954 1 4 1011 3|11 low
## 1955 1 4 1011 3|11 low
## 1956 1 4 1011 3|11 low
## 1957 1 4 1011 3|11 low
## 1958 1 4 1011 3|11 low
## 1959 1 4 1011 3|11 low
## 1960 1 4 1011 3|11 low
## 1961 1 4 1011 3|11 low
## 1962 1 4 1011 3|11 low
## 1963 1 4 1011 3|11 low
## 1964 1 4 1011 3|11 low
## 1965 1 4 1011 3|11 low
## 1966 1 4 1011 3|11 low
## 1967 1 4 1011 3|11 low
## 1968 1 4 1011 3|11 low
## 1969 2 8 1011 3|11 low
## 1970 2 8 1011 3|11 low
## 1971 2 8 1011 3|11 low
## 1972 2 8 1011 3|11 low
## 1973 2 8 1011 3|11 low
## 1974 2 8 1011 3|11 low
## 1975 2 8 1011 3|11 low
## 1976 2 8 1011 3|11 low
## 1977 2 8 1011 3|11 low
## 1978 2 8 1011 3|11 low
## 1979 2 8 1011 3|11 low
## 1980 2 8 1011 3|11 low
## 1981 2 8 1011 3|11 low
## 1982 2 8 1011 3|11 low
## 1983 2 8 1011 3|11 low
## 1984 2 8 1011 3|11 low
## 1985 2 8 1011 3|11 low
## 1986 2 8 1011 3|11 low
## 1987 2 8 1011 3|11 low
## 1988 2 8 1011 3|11 low
## 1989 2 8 1011 3|11 low
## 1990 2 8 1011 3|11 low
## 1991 2 8 1011 3|11 low
## 1992 2 8 1011 3|11 low
## 1993 3 12 1011 3|11 low
## 1994 3 12 1011 3|11 low
## 1995 3 12 1011 3|11 low
## 1996 3 12 1011 3|11 low
## 1997 3 12 1011 3|11 low
## 1998 3 12 1011 3|11 low
## 1999 3 12 1011 3|11 low
## 2000 3 12 1011 3|11 low
## 2001 3 12 1011 3|11 low
## 2002 3 12 1011 3|11 low
## 2003 3 12 1011 3|11 low
## 2004 3 12 1011 3|11 low
## 2005 3 12 1011 3|11 low
## 2006 3 12 1011 3|11 low
## 2007 3 12 1011 3|11 low
## 2008 3 12 1011 3|11 low
## 2009 3 12 1011 3|11 low
## 2010 3 12 1011 3|11 low
## 2011 3 12 1011 3|11 low
## 2012 3 12 1011 3|11 low
## 2013 3 12 1011 3|11 low
## 2014 3 12 1011 3|11 low
## 2015 3 12 1011 3|11 low
## 2016 3 12 1011 3|11 low
## 2017 4 16 1011 3|11 low
## 2018 4 16 1011 3|11 low
## 2019 4 16 1011 3|11 low
## 2020 4 16 1011 3|11 low
## 2021 4 16 1011 3|11 low
## 2022 4 16 1011 3|11 low
## 2023 4 16 1011 3|11 low
## 2024 4 16 1011 3|11 low
## 2025 4 16 1011 3|11 low
## 2026 4 16 1011 3|11 low
## 2027 4 16 1011 3|11 low
## 2028 4 16 1011 3|11 low
## 2029 4 16 1011 3|11 low
## 2030 4 16 1011 3|11 low
## 2031 4 16 1011 3|11 low
## 2032 4 16 1011 3|11 low
## 2033 4 16 1011 3|11 low
## 2034 4 16 1011 3|11 low
## 2035 4 16 1011 3|11 low
## 2036 4 16 1011 3|11 low
## 2037 4 16 1011 3|11 low
## 2038 4 16 1011 3|11 low
## 2039 4 16 1011 3|11 low
## 2040 4 16 1011 3|11 low
## 2041 5 20 1011 3|11 low
## 2042 5 20 1011 3|11 low
## 2043 5 20 1011 3|11 low
## 2044 5 20 1011 3|11 low
## 2045 5 20 1011 3|11 low
## 2046 5 20 1011 3|11 low
## 2047 5 20 1011 3|11 low
## 2048 5 20 1011 3|11 low
## 2049 5 20 1011 3|11 low
## 2050 5 20 1011 3|11 low
## 2051 5 20 1011 3|11 low
## 2052 5 20 1011 3|11 low
## 2053 5 20 1011 3|11 low
## 2054 5 20 1011 3|11 low
## 2055 5 20 1011 3|11 low
## 2056 5 20 1011 3|11 low
## 2057 5 20 1011 3|11 low
## 2058 5 20 1011 3|11 low
## 2059 5 20 1011 3|11 low
## 2060 5 20 1011 3|11 low
## 2061 5 20 1011 3|11 low
## 2062 5 20 1011 3|11 low
## 2063 5 20 1011 3|11 low
## 2064 5 20 1011 3|11 low
## 2065 6 24 1011 3|11 low
## 2066 6 24 1011 3|11 low
## 2067 6 24 1011 3|11 low
## 2068 6 24 1011 3|11 low
## 2069 6 24 1011 3|11 low
## 2070 6 24 1011 3|11 low
## 2071 6 24 1011 3|11 low
## 2072 6 24 1011 3|11 low
## 2073 6 24 1011 3|11 low
## 2074 6 24 1011 3|11 low
## 2075 6 24 1011 3|11 low
## 2076 6 24 1011 3|11 low
## 2077 6 24 1011 3|11 low
## 2078 6 24 1011 3|11 low
## 2079 6 24 1011 3|11 low
## 2080 6 24 1011 3|11 low
## 2081 6 24 1011 3|11 low
## 2082 6 24 1011 3|11 low
## 2083 6 24 1011 3|11 low
## 2084 6 24 1011 3|11 low
## 2085 6 24 1011 3|11 low
## 2086 6 24 1011 3|11 low
## 2087 6 24 1011 3|11 low
## 2088 6 24 1011 3|11 low
## 2089 7 28 1011 3|11 low
## 2090 7 28 1011 3|11 low
## 2091 7 28 1011 3|11 low
## 2092 7 28 1011 3|11 low
## 2093 7 28 1011 3|11 low
## 2094 7 28 1011 3|11 low
## 2095 7 28 1011 3|11 low
## 2096 7 28 1011 3|11 low
## 2097 7 28 1011 3|11 low
## 2098 7 28 1011 3|11 low
## 2099 7 28 1011 3|11 low
## 2100 7 28 1011 3|11 low
## 2101 7 28 1011 3|11 low
## 2102 7 28 1011 3|11 low
## 2103 7 28 1011 3|11 low
## 2104 7 28 1011 3|11 low
## 2105 7 28 1011 3|11 low
## 2106 7 28 1011 3|11 low
## 2107 7 28 1011 3|11 low
## 2108 7 28 1011 3|11 low
## 2109 7 28 1011 3|11 low
## 2110 7 28 1011 3|11 low
## 2111 7 28 1011 3|11 low
## 2112 7 28 1011 3|11 low
## 2113 0 0 1012 3|12 low
## 2114 0 0 1012 3|12 low
## 2115 0 0 1012 3|12 low
## 2116 0 0 1012 3|12 low
## 2117 0 0 1012 3|12 low
## 2118 0 0 1012 3|12 low
## 2119 0 0 1012 3|12 low
## 2120 0 0 1012 3|12 low
## 2121 0 0 1012 3|12 low
## 2122 0 0 1012 3|12 low
## 2123 0 0 1012 3|12 low
## 2124 0 0 1012 3|12 low
## 2125 0 0 1012 3|12 low
## 2126 0 0 1012 3|12 low
## 2127 0 0 1012 3|12 low
## 2128 0 0 1012 3|12 low
## 2129 0 0 1012 3|12 low
## 2130 0 0 1012 3|12 low
## 2131 0 0 1012 3|12 low
## 2132 0 0 1012 3|12 low
## 2133 0 0 1012 3|12 low
## 2134 0 0 1012 3|12 low
## 2135 0 0 1012 3|12 low
## 2136 0 0 1012 3|12 low
## 2137 1 4 1012 3|12 low
## 2138 1 4 1012 3|12 low
## 2139 1 4 1012 3|12 low
## 2140 1 4 1012 3|12 low
## 2141 1 4 1012 3|12 low
## 2142 1 4 1012 3|12 low
## 2143 1 4 1012 3|12 low
## 2144 1 4 1012 3|12 low
## 2145 1 4 1012 3|12 low
## 2146 1 4 1012 3|12 low
## 2147 1 4 1012 3|12 low
## 2148 1 4 1012 3|12 low
## 2149 1 4 1012 3|12 low
## 2150 1 4 1012 3|12 low
## 2151 1 4 1012 3|12 low
## 2152 1 4 1012 3|12 low
## 2153 1 4 1012 3|12 low
## 2154 1 4 1012 3|12 low
## 2155 1 4 1012 3|12 low
## 2156 1 4 1012 3|12 low
## 2157 1 4 1012 3|12 low
## 2158 1 4 1012 3|12 low
## 2159 1 4 1012 3|12 low
## 2160 1 4 1012 3|12 low
## 2161 2 8 1012 3|12 low
## 2162 2 8 1012 3|12 low
## 2163 2 8 1012 3|12 low
## 2164 2 8 1012 3|12 low
## 2165 2 8 1012 3|12 low
## 2166 2 8 1012 3|12 low
## 2167 2 8 1012 3|12 low
## 2168 2 8 1012 3|12 low
## 2169 2 8 1012 3|12 low
## 2170 2 8 1012 3|12 low
## 2171 2 8 1012 3|12 low
## 2172 2 8 1012 3|12 low
## 2173 2 8 1012 3|12 low
## 2174 2 8 1012 3|12 low
## 2175 2 8 1012 3|12 low
## 2176 2 8 1012 3|12 low
## 2177 2 8 1012 3|12 low
## 2178 2 8 1012 3|12 low
## 2179 2 8 1012 3|12 low
## 2180 2 8 1012 3|12 low
## 2181 2 8 1012 3|12 low
## 2182 2 8 1012 3|12 low
## 2183 2 8 1012 3|12 low
## 2184 2 8 1012 3|12 low
## 2185 3 12 1012 3|12 low
## 2186 3 12 1012 3|12 low
## 2187 3 12 1012 3|12 low
## 2188 3 12 1012 3|12 low
## 2189 3 12 1012 3|12 low
## 2190 3 12 1012 3|12 low
## 2191 3 12 1012 3|12 low
## 2192 3 12 1012 3|12 low
## 2193 3 12 1012 3|12 low
## 2194 3 12 1012 3|12 low
## 2195 3 12 1012 3|12 low
## 2196 3 12 1012 3|12 low
## 2197 3 12 1012 3|12 low
## 2198 3 12 1012 3|12 low
## 2199 3 12 1012 3|12 low
## 2200 3 12 1012 3|12 low
## 2201 3 12 1012 3|12 low
## 2202 3 12 1012 3|12 low
## 2203 3 12 1012 3|12 low
## 2204 3 12 1012 3|12 low
## 2205 3 12 1012 3|12 low
## 2206 3 12 1012 3|12 low
## 2207 3 12 1012 3|12 low
## 2208 3 12 1012 3|12 low
## 2209 4 16 1012 3|12 low
## 2210 4 16 1012 3|12 low
## 2211 4 16 1012 3|12 low
## 2212 4 16 1012 3|12 low
## 2213 4 16 1012 3|12 low
## 2214 4 16 1012 3|12 low
## 2215 4 16 1012 3|12 low
## 2216 4 16 1012 3|12 low
## 2217 4 16 1012 3|12 low
## 2218 4 16 1012 3|12 low
## 2219 4 16 1012 3|12 low
## 2220 4 16 1012 3|12 low
## 2221 4 16 1012 3|12 low
## 2222 4 16 1012 3|12 low
## 2223 4 16 1012 3|12 low
## 2224 4 16 1012 3|12 low
## 2225 4 16 1012 3|12 low
## 2226 4 16 1012 3|12 low
## 2227 4 16 1012 3|12 low
## 2228 4 16 1012 3|12 low
## 2229 4 16 1012 3|12 low
## 2230 4 16 1012 3|12 low
## 2231 4 16 1012 3|12 low
## 2232 4 16 1012 3|12 low
## 2233 5 20 1012 3|12 low
## 2234 5 20 1012 3|12 low
## 2235 5 20 1012 3|12 low
## 2236 5 20 1012 3|12 low
## 2237 5 20 1012 3|12 low
## 2238 5 20 1012 3|12 low
## 2239 5 20 1012 3|12 low
## 2240 5 20 1012 3|12 low
## 2241 5 20 1012 3|12 low
## 2242 5 20 1012 3|12 low
## 2243 5 20 1012 3|12 low
## 2244 5 20 1012 3|12 low
## 2245 5 20 1012 3|12 low
## 2246 5 20 1012 3|12 low
## 2247 5 20 1012 3|12 low
## 2248 5 20 1012 3|12 low
## 2249 5 20 1012 3|12 low
## 2250 5 20 1012 3|12 low
## 2251 5 20 1012 3|12 low
## 2252 5 20 1012 3|12 low
## 2253 5 20 1012 3|12 low
## 2254 5 20 1012 3|12 low
## 2255 5 20 1012 3|12 low
## 2256 5 20 1012 3|12 low
## 2257 6 24 1012 3|12 low
## 2258 6 24 1012 3|12 low
## 2259 6 24 1012 3|12 low
## 2260 6 24 1012 3|12 low
## 2261 6 24 1012 3|12 low
## 2262 6 24 1012 3|12 low
## 2263 6 24 1012 3|12 low
## 2264 6 24 1012 3|12 low
## 2265 6 24 1012 3|12 low
## 2266 6 24 1012 3|12 low
## 2267 6 24 1012 3|12 low
## 2268 6 24 1012 3|12 low
## 2269 6 24 1012 3|12 low
## 2270 6 24 1012 3|12 low
## 2271 6 24 1012 3|12 low
## 2272 6 24 1012 3|12 low
## 2273 6 24 1012 3|12 low
## 2274 6 24 1012 3|12 low
## 2275 6 24 1012 3|12 low
## 2276 6 24 1012 3|12 low
## 2277 6 24 1012 3|12 low
## 2278 6 24 1012 3|12 low
## 2279 6 24 1012 3|12 low
## 2280 6 24 1012 3|12 low
## 2281 7 28 1012 3|12 low
## 2282 7 28 1012 3|12 low
## 2283 7 28 1012 3|12 low
## 2284 7 28 1012 3|12 low
## 2285 7 28 1012 3|12 low
## 2286 7 28 1012 3|12 low
## 2287 7 28 1012 3|12 low
## 2288 7 28 1012 3|12 low
## 2289 7 28 1012 3|12 low
## 2290 7 28 1012 3|12 low
## 2291 7 28 1012 3|12 low
## 2292 7 28 1012 3|12 low
## 2293 7 28 1012 3|12 low
## 2294 7 28 1012 3|12 low
## 2295 7 28 1012 3|12 low
## 2296 7 28 1012 3|12 low
## 2297 7 28 1012 3|12 low
## 2298 7 28 1012 3|12 low
## 2299 7 28 1012 3|12 low
## 2300 7 28 1012 3|12 low
## 2301 7 28 1012 3|12 low
## 2302 7 28 1012 3|12 low
## 2303 7 28 1012 3|12 low
## 2304 7 28 1012 3|12 low
## 2305 0 0 1013 3|13 low
## 2306 0 0 1013 3|13 low
## 2307 0 0 1013 3|13 low
## 2308 0 0 1013 3|13 low
## 2309 0 0 1013 3|13 low
## 2310 0 0 1013 3|13 low
## 2311 0 0 1013 3|13 low
## 2312 0 0 1013 3|13 low
## 2313 0 0 1013 3|13 low
## 2314 0 0 1013 3|13 low
## 2315 0 0 1013 3|13 low
## 2316 0 0 1013 3|13 low
## 2317 0 0 1013 3|13 low
## 2318 0 0 1013 3|13 low
## 2319 0 0 1013 3|13 low
## 2320 0 0 1013 3|13 low
## 2321 0 0 1013 3|13 low
## 2322 0 0 1013 3|13 low
## 2323 0 0 1013 3|13 low
## 2324 0 0 1013 3|13 low
## 2325 0 0 1013 3|13 low
## 2326 0 0 1013 3|13 low
## 2327 0 0 1013 3|13 low
## 2328 0 0 1013 3|13 low
## 2329 1 4 1013 3|13 low
## 2330 1 4 1013 3|13 low
## 2331 1 4 1013 3|13 low
## 2332 1 4 1013 3|13 low
## 2333 1 4 1013 3|13 low
## 2334 1 4 1013 3|13 low
## 2335 1 4 1013 3|13 low
## 2336 1 4 1013 3|13 low
## 2337 1 4 1013 3|13 low
## 2338 1 4 1013 3|13 low
## 2339 1 4 1013 3|13 low
## 2340 1 4 1013 3|13 low
## 2341 1 4 1013 3|13 low
## 2342 1 4 1013 3|13 low
## 2343 1 4 1013 3|13 low
## 2344 1 4 1013 3|13 low
## 2345 1 4 1013 3|13 low
## 2346 1 4 1013 3|13 low
## 2347 1 4 1013 3|13 low
## 2348 1 4 1013 3|13 low
## 2349 1 4 1013 3|13 low
## 2350 1 4 1013 3|13 low
## 2351 1 4 1013 3|13 low
## 2352 1 4 1013 3|13 low
## 2353 2 8 1013 3|13 low
## 2354 2 8 1013 3|13 low
## 2355 2 8 1013 3|13 low
## 2356 2 8 1013 3|13 low
## 2357 2 8 1013 3|13 low
## 2358 2 8 1013 3|13 low
## 2359 2 8 1013 3|13 low
## 2360 2 8 1013 3|13 low
## 2361 2 8 1013 3|13 low
## 2362 2 8 1013 3|13 low
## 2363 2 8 1013 3|13 low
## 2364 2 8 1013 3|13 low
## 2365 2 8 1013 3|13 low
## 2366 2 8 1013 3|13 low
## 2367 2 8 1013 3|13 low
## 2368 2 8 1013 3|13 low
## 2369 2 8 1013 3|13 low
## 2370 2 8 1013 3|13 low
## 2371 2 8 1013 3|13 low
## 2372 2 8 1013 3|13 low
## 2373 2 8 1013 3|13 low
## 2374 2 8 1013 3|13 low
## 2375 2 8 1013 3|13 low
## 2376 2 8 1013 3|13 low
## 2377 3 12 1013 3|13 low
## 2378 3 12 1013 3|13 low
## 2379 3 12 1013 3|13 low
## 2380 3 12 1013 3|13 low
## 2381 3 12 1013 3|13 low
## 2382 3 12 1013 3|13 low
## 2383 3 12 1013 3|13 low
## 2384 3 12 1013 3|13 low
## 2385 3 12 1013 3|13 low
## 2386 3 12 1013 3|13 low
## 2387 3 12 1013 3|13 low
## 2388 3 12 1013 3|13 low
## 2389 3 12 1013 3|13 low
## 2390 3 12 1013 3|13 low
## 2391 3 12 1013 3|13 low
## 2392 3 12 1013 3|13 low
## 2393 3 12 1013 3|13 low
## 2394 3 12 1013 3|13 low
## 2395 3 12 1013 3|13 low
## 2396 3 12 1013 3|13 low
## 2397 3 12 1013 3|13 low
## 2398 3 12 1013 3|13 low
## 2399 3 12 1013 3|13 low
## 2400 3 12 1013 3|13 low
## 2401 4 16 1013 3|13 low
## 2402 4 16 1013 3|13 low
## 2403 4 16 1013 3|13 low
## 2404 4 16 1013 3|13 low
## 2405 4 16 1013 3|13 low
## 2406 4 16 1013 3|13 low
## 2407 4 16 1013 3|13 low
## 2408 4 16 1013 3|13 low
## 2409 4 16 1013 3|13 low
## 2410 4 16 1013 3|13 low
## 2411 4 16 1013 3|13 low
## 2412 4 16 1013 3|13 low
## 2413 4 16 1013 3|13 low
## 2414 4 16 1013 3|13 low
## 2415 4 16 1013 3|13 low
## 2416 4 16 1013 3|13 low
## 2417 4 16 1013 3|13 low
## 2418 4 16 1013 3|13 low
## 2419 4 16 1013 3|13 low
## 2420 4 16 1013 3|13 low
## 2421 4 16 1013 3|13 low
## 2422 4 16 1013 3|13 low
## 2423 4 16 1013 3|13 low
## 2424 4 16 1013 3|13 low
## 2425 5 20 1013 3|13 low
## 2426 5 20 1013 3|13 low
## 2427 5 20 1013 3|13 low
## 2428 5 20 1013 3|13 low
## 2429 5 20 1013 3|13 low
## 2430 5 20 1013 3|13 low
## 2431 5 20 1013 3|13 low
## 2432 5 20 1013 3|13 low
## 2433 5 20 1013 3|13 low
## 2434 5 20 1013 3|13 low
## 2435 5 20 1013 3|13 low
## 2436 5 20 1013 3|13 low
## 2437 5 20 1013 3|13 low
## 2438 5 20 1013 3|13 low
## 2439 5 20 1013 3|13 low
## 2440 5 20 1013 3|13 low
## 2441 5 20 1013 3|13 low
## 2442 5 20 1013 3|13 low
## 2443 5 20 1013 3|13 low
## 2444 5 20 1013 3|13 low
## 2445 5 20 1013 3|13 low
## 2446 5 20 1013 3|13 low
## 2447 5 20 1013 3|13 low
## 2448 5 20 1013 3|13 low
## 2449 6 24 1013 3|13 low
## 2450 6 24 1013 3|13 low
## 2451 6 24 1013 3|13 low
## 2452 6 24 1013 3|13 low
## 2453 6 24 1013 3|13 low
## 2454 6 24 1013 3|13 low
## 2455 6 24 1013 3|13 low
## 2456 6 24 1013 3|13 low
## 2457 6 24 1013 3|13 low
## 2458 6 24 1013 3|13 low
## 2459 6 24 1013 3|13 low
## 2460 6 24 1013 3|13 low
## 2461 6 24 1013 3|13 low
## 2462 6 24 1013 3|13 low
## 2463 6 24 1013 3|13 low
## 2464 6 24 1013 3|13 low
## 2465 6 24 1013 3|13 low
## 2466 6 24 1013 3|13 low
## 2467 6 24 1013 3|13 low
## 2468 6 24 1013 3|13 low
## 2469 6 24 1013 3|13 low
## 2470 6 24 1013 3|13 low
## 2471 6 24 1013 3|13 low
## 2472 6 24 1013 3|13 low
## 2473 7 28 1013 3|13 low
## 2474 7 28 1013 3|13 low
## 2475 7 28 1013 3|13 low
## 2476 7 28 1013 3|13 low
## 2477 7 28 1013 3|13 low
## 2478 7 28 1013 3|13 low
## 2479 7 28 1013 3|13 low
## 2480 7 28 1013 3|13 low
## 2481 7 28 1013 3|13 low
## 2482 7 28 1013 3|13 low
## 2483 7 28 1013 3|13 low
## 2484 7 28 1013 3|13 low
## 2485 7 28 1013 3|13 low
## 2486 7 28 1013 3|13 low
## 2487 7 28 1013 3|13 low
## 2488 7 28 1013 3|13 low
## 2489 7 28 1013 3|13 low
## 2490 7 28 1013 3|13 low
## 2491 7 28 1013 3|13 low
## 2492 7 28 1013 3|13 low
## 2493 7 28 1013 3|13 low
## 2494 7 28 1013 3|13 low
## 2495 7 28 1013 3|13 low
## 2496 7 28 1013 3|13 low
## 2497 0 0 1014 3|14 low
## 2498 0 0 1014 3|14 low
## 2499 0 0 1014 3|14 low
## 2500 0 0 1014 3|14 low
## 2501 0 0 1014 3|14 low
## 2502 0 0 1014 3|14 low
## 2503 0 0 1014 3|14 low
## 2504 0 0 1014 3|14 low
## 2505 0 0 1014 3|14 low
## 2506 0 0 1014 3|14 low
## 2507 0 0 1014 3|14 low
## 2508 0 0 1014 3|14 low
## 2509 0 0 1014 3|14 low
## 2510 0 0 1014 3|14 low
## 2511 0 0 1014 3|14 low
## 2512 0 0 1014 3|14 low
## 2513 0 0 1014 3|14 low
## 2514 0 0 1014 3|14 low
## 2515 0 0 1014 3|14 low
## 2516 0 0 1014 3|14 low
## 2517 0 0 1014 3|14 low
## 2518 0 0 1014 3|14 low
## 2519 0 0 1014 3|14 low
## 2520 0 0 1014 3|14 low
## 2521 1 4 1014 3|14 low
## 2522 1 4 1014 3|14 low
## 2523 1 4 1014 3|14 low
## 2524 1 4 1014 3|14 low
## 2525 1 4 1014 3|14 low
## 2526 1 4 1014 3|14 low
## 2527 1 4 1014 3|14 low
## 2528 1 4 1014 3|14 low
## 2529 1 4 1014 3|14 low
## 2530 1 4 1014 3|14 low
## 2531 1 4 1014 3|14 low
## 2532 1 4 1014 3|14 low
## 2533 1 4 1014 3|14 low
## 2534 1 4 1014 3|14 low
## 2535 1 4 1014 3|14 low
## 2536 1 4 1014 3|14 low
## 2537 1 4 1014 3|14 low
## 2538 1 4 1014 3|14 low
## 2539 1 4 1014 3|14 low
## 2540 1 4 1014 3|14 low
## 2541 1 4 1014 3|14 low
## 2542 1 4 1014 3|14 low
## 2543 1 4 1014 3|14 low
## 2544 1 4 1014 3|14 low
## 2545 2 8 1014 3|14 low
## 2546 2 8 1014 3|14 low
## 2547 2 8 1014 3|14 low
## 2548 2 8 1014 3|14 low
## 2549 2 8 1014 3|14 low
## 2550 2 8 1014 3|14 low
## 2551 2 8 1014 3|14 low
## 2552 2 8 1014 3|14 low
## 2553 2 8 1014 3|14 low
## 2554 2 8 1014 3|14 low
## 2555 2 8 1014 3|14 low
## 2556 2 8 1014 3|14 low
## 2557 2 8 1014 3|14 low
## 2558 2 8 1014 3|14 low
## 2559 2 8 1014 3|14 low
## 2560 2 8 1014 3|14 low
## 2561 2 8 1014 3|14 low
## 2562 2 8 1014 3|14 low
## 2563 2 8 1014 3|14 low
## 2564 2 8 1014 3|14 low
## 2565 2 8 1014 3|14 low
## 2566 2 8 1014 3|14 low
## 2567 2 8 1014 3|14 low
## 2568 2 8 1014 3|14 low
## 2569 3 12 1014 3|14 low
## 2570 3 12 1014 3|14 low
## 2571 3 12 1014 3|14 low
## 2572 3 12 1014 3|14 low
## 2573 3 12 1014 3|14 low
## 2574 3 12 1014 3|14 low
## 2575 3 12 1014 3|14 low
## 2576 3 12 1014 3|14 low
## 2577 3 12 1014 3|14 low
## 2578 3 12 1014 3|14 low
## 2579 3 12 1014 3|14 low
## 2580 3 12 1014 3|14 low
## 2581 3 12 1014 3|14 low
## 2582 3 12 1014 3|14 low
## 2583 3 12 1014 3|14 low
## 2584 3 12 1014 3|14 low
## 2585 3 12 1014 3|14 low
## 2586 3 12 1014 3|14 low
## 2587 3 12 1014 3|14 low
## 2588 3 12 1014 3|14 low
## 2589 3 12 1014 3|14 low
## 2590 3 12 1014 3|14 low
## 2591 3 12 1014 3|14 low
## 2592 3 12 1014 3|14 low
## 2593 4 16 1014 3|14 low
## 2594 4 16 1014 3|14 low
## 2595 4 16 1014 3|14 low
## 2596 4 16 1014 3|14 low
## 2597 4 16 1014 3|14 low
## 2598 4 16 1014 3|14 low
## 2599 4 16 1014 3|14 low
## 2600 4 16 1014 3|14 low
## 2601 4 16 1014 3|14 low
## 2602 4 16 1014 3|14 low
## 2603 4 16 1014 3|14 low
## 2604 4 16 1014 3|14 low
## 2605 4 16 1014 3|14 low
## 2606 4 16 1014 3|14 low
## 2607 4 16 1014 3|14 low
## 2608 4 16 1014 3|14 low
## 2609 4 16 1014 3|14 low
## 2610 4 16 1014 3|14 low
## 2611 4 16 1014 3|14 low
## 2612 4 16 1014 3|14 low
## 2613 4 16 1014 3|14 low
## 2614 4 16 1014 3|14 low
## 2615 4 16 1014 3|14 low
## 2616 4 16 1014 3|14 low
## 2617 5 20 1014 3|14 low
## 2618 5 20 1014 3|14 low
## 2619 5 20 1014 3|14 low
## 2620 5 20 1014 3|14 low
## 2621 5 20 1014 3|14 low
## 2622 5 20 1014 3|14 low
## 2623 5 20 1014 3|14 low
## 2624 5 20 1014 3|14 low
## 2625 5 20 1014 3|14 low
## 2626 5 20 1014 3|14 low
## 2627 5 20 1014 3|14 low
## 2628 5 20 1014 3|14 low
## 2629 5 20 1014 3|14 low
## 2630 5 20 1014 3|14 low
## 2631 5 20 1014 3|14 low
## 2632 5 20 1014 3|14 low
## 2633 5 20 1014 3|14 low
## 2634 5 20 1014 3|14 low
## 2635 5 20 1014 3|14 low
## 2636 5 20 1014 3|14 low
## 2637 5 20 1014 3|14 low
## 2638 5 20 1014 3|14 low
## 2639 5 20 1014 3|14 low
## 2640 5 20 1014 3|14 low
## 2641 6 24 1014 3|14 low
## 2642 6 24 1014 3|14 low
## 2643 6 24 1014 3|14 low
## 2644 6 24 1014 3|14 low
## 2645 6 24 1014 3|14 low
## 2646 6 24 1014 3|14 low
## 2647 6 24 1014 3|14 low
## 2648 6 24 1014 3|14 low
## 2649 6 24 1014 3|14 low
## 2650 6 24 1014 3|14 low
## 2651 6 24 1014 3|14 low
## 2652 6 24 1014 3|14 low
## 2653 6 24 1014 3|14 low
## 2654 6 24 1014 3|14 low
## 2655 6 24 1014 3|14 low
## 2656 6 24 1014 3|14 low
## 2657 6 24 1014 3|14 low
## 2658 6 24 1014 3|14 low
## 2659 6 24 1014 3|14 low
## 2660 6 24 1014 3|14 low
## 2661 6 24 1014 3|14 low
## 2662 6 24 1014 3|14 low
## 2663 6 24 1014 3|14 low
## 2664 6 24 1014 3|14 low
## 2665 7 28 1014 3|14 low
## 2666 7 28 1014 3|14 low
## 2667 7 28 1014 3|14 low
## 2668 7 28 1014 3|14 low
## 2669 7 28 1014 3|14 low
## 2670 7 28 1014 3|14 low
## 2671 7 28 1014 3|14 low
## 2672 7 28 1014 3|14 low
## 2673 7 28 1014 3|14 low
## 2674 7 28 1014 3|14 low
## 2675 7 28 1014 3|14 low
## 2676 7 28 1014 3|14 low
## 2677 7 28 1014 3|14 low
## 2678 7 28 1014 3|14 low
## 2679 7 28 1014 3|14 low
## 2680 7 28 1014 3|14 low
## 2681 7 28 1014 3|14 low
## 2682 7 28 1014 3|14 low
## 2683 7 28 1014 3|14 low
## 2684 7 28 1014 3|14 low
## 2685 7 28 1014 3|14 low
## 2686 7 28 1014 3|14 low
## 2687 7 28 1014 3|14 low
## 2688 7 28 1014 3|14 low
## 2689 0 0 1015 3|15 low
## 2690 0 0 1015 3|15 low
## 2691 0 0 1015 3|15 low
## 2692 0 0 1015 3|15 low
## 2693 0 0 1015 3|15 low
## 2694 0 0 1015 3|15 low
## 2695 0 0 1015 3|15 low
## 2696 0 0 1015 3|15 low
## 2697 0 0 1015 3|15 low
## 2698 0 0 1015 3|15 low
## 2699 0 0 1015 3|15 low
## 2700 0 0 1015 3|15 low
## 2701 0 0 1015 3|15 low
## 2702 0 0 1015 3|15 low
## 2703 0 0 1015 3|15 low
## 2704 0 0 1015 3|15 low
## 2705 0 0 1015 3|15 low
## 2706 0 0 1015 3|15 low
## 2707 0 0 1015 3|15 low
## 2708 0 0 1015 3|15 low
## 2709 0 0 1015 3|15 low
## 2710 0 0 1015 3|15 low
## 2711 0 0 1015 3|15 low
## 2712 0 0 1015 3|15 low
## 2713 1 4 1015 3|15 low
## 2714 1 4 1015 3|15 low
## 2715 1 4 1015 3|15 low
## 2716 1 4 1015 3|15 low
## 2717 1 4 1015 3|15 low
## 2718 1 4 1015 3|15 low
## 2719 1 4 1015 3|15 low
## 2720 1 4 1015 3|15 low
## 2721 1 4 1015 3|15 low
## 2722 1 4 1015 3|15 low
## 2723 1 4 1015 3|15 low
## 2724 1 4 1015 3|15 low
## 2725 1 4 1015 3|15 low
## 2726 1 4 1015 3|15 low
## 2727 1 4 1015 3|15 low
## 2728 1 4 1015 3|15 low
## 2729 1 4 1015 3|15 low
## 2730 1 4 1015 3|15 low
## 2731 1 4 1015 3|15 low
## 2732 1 4 1015 3|15 low
## 2733 1 4 1015 3|15 low
## 2734 1 4 1015 3|15 low
## 2735 1 4 1015 3|15 low
## 2736 1 4 1015 3|15 low
## 2737 2 8 1015 3|15 low
## 2738 2 8 1015 3|15 low
## 2739 2 8 1015 3|15 low
## 2740 2 8 1015 3|15 low
## 2741 2 8 1015 3|15 low
## 2742 2 8 1015 3|15 low
## 2743 2 8 1015 3|15 low
## 2744 2 8 1015 3|15 low
## 2745 2 8 1015 3|15 low
## 2746 2 8 1015 3|15 low
## 2747 2 8 1015 3|15 low
## 2748 2 8 1015 3|15 low
## 2749 2 8 1015 3|15 low
## 2750 2 8 1015 3|15 low
## 2751 2 8 1015 3|15 low
## 2752 2 8 1015 3|15 low
## 2753 2 8 1015 3|15 low
## 2754 2 8 1015 3|15 low
## 2755 2 8 1015 3|15 low
## 2756 2 8 1015 3|15 low
## 2757 2 8 1015 3|15 low
## 2758 2 8 1015 3|15 low
## 2759 2 8 1015 3|15 low
## 2760 2 8 1015 3|15 low
## 2761 3 12 1015 3|15 low
## 2762 3 12 1015 3|15 low
## 2763 3 12 1015 3|15 low
## 2764 3 12 1015 3|15 low
## 2765 3 12 1015 3|15 low
## 2766 3 12 1015 3|15 low
## 2767 3 12 1015 3|15 low
## 2768 3 12 1015 3|15 low
## 2769 3 12 1015 3|15 low
## 2770 3 12 1015 3|15 low
## 2771 3 12 1015 3|15 low
## 2772 3 12 1015 3|15 low
## 2773 3 12 1015 3|15 low
## 2774 3 12 1015 3|15 low
## 2775 3 12 1015 3|15 low
## 2776 3 12 1015 3|15 low
## 2777 3 12 1015 3|15 low
## 2778 3 12 1015 3|15 low
## 2779 3 12 1015 3|15 low
## 2780 3 12 1015 3|15 low
## 2781 3 12 1015 3|15 low
## 2782 3 12 1015 3|15 low
## 2783 3 12 1015 3|15 low
## 2784 3 12 1015 3|15 low
## 2785 4 16 1015 3|15 low
## 2786 4 16 1015 3|15 low
## 2787 4 16 1015 3|15 low
## 2788 4 16 1015 3|15 low
## 2789 4 16 1015 3|15 low
## 2790 4 16 1015 3|15 low
## 2791 4 16 1015 3|15 low
## 2792 4 16 1015 3|15 low
## 2793 4 16 1015 3|15 low
## 2794 4 16 1015 3|15 low
## 2795 4 16 1015 3|15 low
## 2796 4 16 1015 3|15 low
## 2797 4 16 1015 3|15 low
## 2798 4 16 1015 3|15 low
## 2799 4 16 1015 3|15 low
## 2800 4 16 1015 3|15 low
## 2801 4 16 1015 3|15 low
## 2802 4 16 1015 3|15 low
## 2803 4 16 1015 3|15 low
## 2804 4 16 1015 3|15 low
## 2805 4 16 1015 3|15 low
## 2806 4 16 1015 3|15 low
## 2807 4 16 1015 3|15 low
## 2808 4 16 1015 3|15 low
## 2809 5 20 1015 3|15 low
## 2810 5 20 1015 3|15 low
## 2811 5 20 1015 3|15 low
## 2812 5 20 1015 3|15 low
## 2813 5 20 1015 3|15 low
## 2814 5 20 1015 3|15 low
## 2815 5 20 1015 3|15 low
## 2816 5 20 1015 3|15 low
## 2817 5 20 1015 3|15 low
## 2818 5 20 1015 3|15 low
## 2819 5 20 1015 3|15 low
## 2820 5 20 1015 3|15 low
## 2821 5 20 1015 3|15 low
## 2822 5 20 1015 3|15 low
## 2823 5 20 1015 3|15 low
## 2824 5 20 1015 3|15 low
## 2825 5 20 1015 3|15 low
## 2826 5 20 1015 3|15 low
## 2827 5 20 1015 3|15 low
## 2828 5 20 1015 3|15 low
## 2829 5 20 1015 3|15 low
## 2830 5 20 1015 3|15 low
## 2831 5 20 1015 3|15 low
## 2832 5 20 1015 3|15 low
## 2833 6 24 1015 3|15 low
## 2834 6 24 1015 3|15 low
## 2835 6 24 1015 3|15 low
## 2836 6 24 1015 3|15 low
## 2837 6 24 1015 3|15 low
## 2838 6 24 1015 3|15 low
## 2839 6 24 1015 3|15 low
## 2840 6 24 1015 3|15 low
## 2841 6 24 1015 3|15 low
## 2842 6 24 1015 3|15 low
## 2843 6 24 1015 3|15 low
## 2844 6 24 1015 3|15 low
## 2845 6 24 1015 3|15 low
## 2846 6 24 1015 3|15 low
## 2847 6 24 1015 3|15 low
## 2848 6 24 1015 3|15 low
## 2849 6 24 1015 3|15 low
## 2850 6 24 1015 3|15 low
## 2851 6 24 1015 3|15 low
## 2852 6 24 1015 3|15 low
## 2853 6 24 1015 3|15 low
## 2854 6 24 1015 3|15 low
## 2855 6 24 1015 3|15 low
## 2856 6 24 1015 3|15 low
## 2857 7 28 1015 3|15 low
## 2858 7 28 1015 3|15 low
## 2859 7 28 1015 3|15 low
## 2860 7 28 1015 3|15 low
## 2861 7 28 1015 3|15 low
## 2862 7 28 1015 3|15 low
## 2863 7 28 1015 3|15 low
## 2864 7 28 1015 3|15 low
## 2865 7 28 1015 3|15 low
## 2866 7 28 1015 3|15 low
## 2867 7 28 1015 3|15 low
## 2868 7 28 1015 3|15 low
## 2869 7 28 1015 3|15 low
## 2870 7 28 1015 3|15 low
## 2871 7 28 1015 3|15 low
## 2872 7 28 1015 3|15 low
## 2873 7 28 1015 3|15 low
## 2874 7 28 1015 3|15 low
## 2875 7 28 1015 3|15 low
## 2876 7 28 1015 3|15 low
## 2877 7 28 1015 3|15 low
## 2878 7 28 1015 3|15 low
## 2879 7 28 1015 3|15 low
## 2880 7 28 1015 3|15 low
## 2881 0 0 1016 4|11 low
## 2882 0 0 1016 4|11 low
## 2883 0 0 1016 4|11 low
## 2884 0 0 1016 4|11 low
## 2885 0 0 1016 4|11 low
## 2886 0 0 1016 4|11 low
## 2887 0 0 1016 4|11 low
## 2888 0 0 1016 4|11 low
## 2889 0 0 1016 4|11 low
## 2890 0 0 1016 4|11 low
## 2891 0 0 1016 4|11 low
## 2892 0 0 1016 4|11 low
## 2893 0 0 1016 4|11 low
## 2894 0 0 1016 4|11 low
## 2895 0 0 1016 4|11 low
## 2896 0 0 1016 4|11 low
## 2897 0 0 1016 4|11 low
## 2898 0 0 1016 4|11 low
## 2899 0 0 1016 4|11 low
## 2900 0 0 1016 4|11 low
## 2901 0 0 1016 4|11 low
## 2902 0 0 1016 4|11 low
## 2903 0 0 1016 4|11 low
## 2904 0 0 1016 4|11 low
## 2905 1 4 1016 4|11 low
## 2906 1 4 1016 4|11 low
## 2907 1 4 1016 4|11 low
## 2908 1 4 1016 4|11 low
## 2909 1 4 1016 4|11 low
## 2910 1 4 1016 4|11 low
## 2911 1 4 1016 4|11 low
## 2912 1 4 1016 4|11 low
## 2913 1 4 1016 4|11 low
## 2914 1 4 1016 4|11 low
## 2915 1 4 1016 4|11 low
## 2916 1 4 1016 4|11 low
## 2917 1 4 1016 4|11 low
## 2918 1 4 1016 4|11 low
## 2919 1 4 1016 4|11 low
## 2920 1 4 1016 4|11 low
## 2921 1 4 1016 4|11 low
## 2922 1 4 1016 4|11 low
## 2923 1 4 1016 4|11 low
## 2924 1 4 1016 4|11 low
## 2925 1 4 1016 4|11 low
## 2926 1 4 1016 4|11 low
## 2927 1 4 1016 4|11 low
## 2928 1 4 1016 4|11 low
## 2929 2 8 1016 4|11 low
## 2930 2 8 1016 4|11 low
## 2931 2 8 1016 4|11 low
## 2932 2 8 1016 4|11 low
## 2933 2 8 1016 4|11 low
## 2934 2 8 1016 4|11 low
## 2935 2 8 1016 4|11 low
## 2936 2 8 1016 4|11 low
## 2937 2 8 1016 4|11 low
## 2938 2 8 1016 4|11 low
## 2939 2 8 1016 4|11 low
## 2940 2 8 1016 4|11 low
## 2941 2 8 1016 4|11 low
## 2942 2 8 1016 4|11 low
## 2943 2 8 1016 4|11 low
## 2944 2 8 1016 4|11 low
## 2945 2 8 1016 4|11 low
## 2946 2 8 1016 4|11 low
## 2947 2 8 1016 4|11 low
## 2948 2 8 1016 4|11 low
## 2949 2 8 1016 4|11 low
## 2950 2 8 1016 4|11 low
## 2951 2 8 1016 4|11 low
## 2952 2 8 1016 4|11 low
## 2953 3 12 1016 4|11 low
## 2954 3 12 1016 4|11 low
## 2955 3 12 1016 4|11 low
## 2956 3 12 1016 4|11 low
## 2957 3 12 1016 4|11 low
## 2958 3 12 1016 4|11 low
## 2959 3 12 1016 4|11 low
## 2960 3 12 1016 4|11 low
## 2961 3 12 1016 4|11 low
## 2962 3 12 1016 4|11 low
## 2963 3 12 1016 4|11 low
## 2964 3 12 1016 4|11 low
## 2965 3 12 1016 4|11 low
## 2966 3 12 1016 4|11 low
## 2967 3 12 1016 4|11 low
## 2968 3 12 1016 4|11 low
## 2969 3 12 1016 4|11 low
## 2970 3 12 1016 4|11 low
## 2971 3 12 1016 4|11 low
## 2972 3 12 1016 4|11 low
## 2973 3 12 1016 4|11 low
## 2974 3 12 1016 4|11 low
## 2975 3 12 1016 4|11 low
## 2976 3 12 1016 4|11 low
## 2977 4 16 1016 4|11 low
## 2978 4 16 1016 4|11 low
## 2979 4 16 1016 4|11 low
## 2980 4 16 1016 4|11 low
## 2981 4 16 1016 4|11 low
## 2982 4 16 1016 4|11 low
## 2983 4 16 1016 4|11 low
## 2984 4 16 1016 4|11 low
## 2985 4 16 1016 4|11 low
## 2986 4 16 1016 4|11 low
## 2987 4 16 1016 4|11 low
## 2988 4 16 1016 4|11 low
## 2989 4 16 1016 4|11 low
## 2990 4 16 1016 4|11 low
## 2991 4 16 1016 4|11 low
## 2992 4 16 1016 4|11 low
## 2993 4 16 1016 4|11 low
## 2994 4 16 1016 4|11 low
## 2995 4 16 1016 4|11 low
## 2996 4 16 1016 4|11 low
## 2997 4 16 1016 4|11 low
## 2998 4 16 1016 4|11 low
## 2999 4 16 1016 4|11 low
## 3000 4 16 1016 4|11 low
## 3001 5 20 1016 4|11 low
## 3002 5 20 1016 4|11 low
## 3003 5 20 1016 4|11 low
## 3004 5 20 1016 4|11 low
## 3005 5 20 1016 4|11 low
## 3006 5 20 1016 4|11 low
## 3007 5 20 1016 4|11 low
## 3008 5 20 1016 4|11 low
## 3009 5 20 1016 4|11 low
## 3010 5 20 1016 4|11 low
## 3011 5 20 1016 4|11 low
## 3012 5 20 1016 4|11 low
## 3013 5 20 1016 4|11 low
## 3014 5 20 1016 4|11 low
## 3015 5 20 1016 4|11 low
## 3016 5 20 1016 4|11 low
## 3017 5 20 1016 4|11 low
## 3018 5 20 1016 4|11 low
## 3019 5 20 1016 4|11 low
## 3020 5 20 1016 4|11 low
## 3021 5 20 1016 4|11 low
## 3022 5 20 1016 4|11 low
## 3023 5 20 1016 4|11 low
## 3024 5 20 1016 4|11 low
## 3025 6 24 1016 4|11 low
## 3026 6 24 1016 4|11 low
## 3027 6 24 1016 4|11 low
## 3028 6 24 1016 4|11 low
## 3029 6 24 1016 4|11 low
## 3030 6 24 1016 4|11 low
## 3031 6 24 1016 4|11 low
## 3032 6 24 1016 4|11 low
## 3033 6 24 1016 4|11 low
## 3034 6 24 1016 4|11 low
## 3035 6 24 1016 4|11 low
## 3036 6 24 1016 4|11 low
## 3037 6 24 1016 4|11 low
## 3038 6 24 1016 4|11 low
## 3039 6 24 1016 4|11 low
## 3040 6 24 1016 4|11 low
## 3041 6 24 1016 4|11 low
## 3042 6 24 1016 4|11 low
## 3043 6 24 1016 4|11 low
## 3044 6 24 1016 4|11 low
## 3045 6 24 1016 4|11 low
## 3046 6 24 1016 4|11 low
## 3047 6 24 1016 4|11 low
## 3048 6 24 1016 4|11 low
## 3049 7 28 1016 4|11 low
## 3050 7 28 1016 4|11 low
## 3051 7 28 1016 4|11 low
## 3052 7 28 1016 4|11 low
## 3053 7 28 1016 4|11 low
## 3054 7 28 1016 4|11 low
## 3055 7 28 1016 4|11 low
## 3056 7 28 1016 4|11 low
## 3057 7 28 1016 4|11 low
## 3058 7 28 1016 4|11 low
## 3059 7 28 1016 4|11 low
## 3060 7 28 1016 4|11 low
## 3061 7 28 1016 4|11 low
## 3062 7 28 1016 4|11 low
## 3063 7 28 1016 4|11 low
## 3064 7 28 1016 4|11 low
## 3065 7 28 1016 4|11 low
## 3066 7 28 1016 4|11 low
## 3067 7 28 1016 4|11 low
## 3068 7 28 1016 4|11 low
## 3069 7 28 1016 4|11 low
## 3070 7 28 1016 4|11 low
## 3071 7 28 1016 4|11 low
## 3072 7 28 1016 4|11 low
## 3073 0 0 1017 4|12 low
## 3074 0 0 1017 4|12 low
## 3075 0 0 1017 4|12 low
## 3076 0 0 1017 4|12 low
## 3077 0 0 1017 4|12 low
## 3078 0 0 1017 4|12 low
## 3079 0 0 1017 4|12 low
## 3080 0 0 1017 4|12 low
## 3081 0 0 1017 4|12 low
## 3082 0 0 1017 4|12 low
## 3083 0 0 1017 4|12 low
## 3084 0 0 1017 4|12 low
## 3085 0 0 1017 4|12 low
## 3086 0 0 1017 4|12 low
## 3087 0 0 1017 4|12 low
## 3088 0 0 1017 4|12 low
## 3089 0 0 1017 4|12 low
## 3090 0 0 1017 4|12 low
## 3091 0 0 1017 4|12 low
## 3092 0 0 1017 4|12 low
## 3093 0 0 1017 4|12 low
## 3094 0 0 1017 4|12 low
## 3095 0 0 1017 4|12 low
## 3096 0 0 1017 4|12 low
## 3097 1 4 1017 4|12 low
## 3098 1 4 1017 4|12 low
## 3099 1 4 1017 4|12 low
## 3100 1 4 1017 4|12 low
## 3101 1 4 1017 4|12 low
## 3102 1 4 1017 4|12 low
## 3103 1 4 1017 4|12 low
## 3104 1 4 1017 4|12 low
## 3105 1 4 1017 4|12 low
## 3106 1 4 1017 4|12 low
## 3107 1 4 1017 4|12 low
## 3108 1 4 1017 4|12 low
## 3109 1 4 1017 4|12 low
## 3110 1 4 1017 4|12 low
## 3111 1 4 1017 4|12 low
## 3112 1 4 1017 4|12 low
## 3113 1 4 1017 4|12 low
## 3114 1 4 1017 4|12 low
## 3115 1 4 1017 4|12 low
## 3116 1 4 1017 4|12 low
## 3117 1 4 1017 4|12 low
## 3118 1 4 1017 4|12 low
## 3119 1 4 1017 4|12 low
## 3120 1 4 1017 4|12 low
## 3121 2 8 1017 4|12 low
## 3122 2 8 1017 4|12 low
## 3123 2 8 1017 4|12 low
## 3124 2 8 1017 4|12 low
## 3125 2 8 1017 4|12 low
## 3126 2 8 1017 4|12 low
## 3127 2 8 1017 4|12 low
## 3128 2 8 1017 4|12 low
## 3129 2 8 1017 4|12 low
## 3130 2 8 1017 4|12 low
## 3131 2 8 1017 4|12 low
## 3132 2 8 1017 4|12 low
## 3133 2 8 1017 4|12 low
## 3134 2 8 1017 4|12 low
## 3135 2 8 1017 4|12 low
## 3136 2 8 1017 4|12 low
## 3137 2 8 1017 4|12 low
## 3138 2 8 1017 4|12 low
## 3139 2 8 1017 4|12 low
## 3140 2 8 1017 4|12 low
## 3141 2 8 1017 4|12 low
## 3142 2 8 1017 4|12 low
## 3143 2 8 1017 4|12 low
## 3144 2 8 1017 4|12 low
## 3145 3 12 1017 4|12 low
## 3146 3 12 1017 4|12 low
## 3147 3 12 1017 4|12 low
## 3148 3 12 1017 4|12 low
## 3149 3 12 1017 4|12 low
## 3150 3 12 1017 4|12 low
## 3151 3 12 1017 4|12 low
## 3152 3 12 1017 4|12 low
## 3153 3 12 1017 4|12 low
## 3154 3 12 1017 4|12 low
## 3155 3 12 1017 4|12 low
## 3156 3 12 1017 4|12 low
## 3157 3 12 1017 4|12 low
## 3158 3 12 1017 4|12 low
## 3159 3 12 1017 4|12 low
## 3160 3 12 1017 4|12 low
## 3161 3 12 1017 4|12 low
## 3162 3 12 1017 4|12 low
## 3163 3 12 1017 4|12 low
## 3164 3 12 1017 4|12 low
## 3165 3 12 1017 4|12 low
## 3166 3 12 1017 4|12 low
## 3167 3 12 1017 4|12 low
## 3168 3 12 1017 4|12 low
## 3169 4 16 1017 4|12 low
## 3170 4 16 1017 4|12 low
## 3171 4 16 1017 4|12 low
## 3172 4 16 1017 4|12 low
## 3173 4 16 1017 4|12 low
## 3174 4 16 1017 4|12 low
## 3175 4 16 1017 4|12 low
## 3176 4 16 1017 4|12 low
## 3177 4 16 1017 4|12 low
## 3178 4 16 1017 4|12 low
## 3179 4 16 1017 4|12 low
## 3180 4 16 1017 4|12 low
## 3181 4 16 1017 4|12 low
## 3182 4 16 1017 4|12 low
## 3183 4 16 1017 4|12 low
## 3184 4 16 1017 4|12 low
## 3185 4 16 1017 4|12 low
## 3186 4 16 1017 4|12 low
## 3187 4 16 1017 4|12 low
## 3188 4 16 1017 4|12 low
## 3189 4 16 1017 4|12 low
## 3190 4 16 1017 4|12 low
## 3191 4 16 1017 4|12 low
## 3192 4 16 1017 4|12 low
## 3193 5 20 1017 4|12 low
## 3194 5 20 1017 4|12 low
## 3195 5 20 1017 4|12 low
## 3196 5 20 1017 4|12 low
## 3197 5 20 1017 4|12 low
## 3198 5 20 1017 4|12 low
## 3199 5 20 1017 4|12 low
## 3200 5 20 1017 4|12 low
## 3201 5 20 1017 4|12 low
## 3202 5 20 1017 4|12 low
## 3203 5 20 1017 4|12 low
## 3204 5 20 1017 4|12 low
## 3205 5 20 1017 4|12 low
## 3206 5 20 1017 4|12 low
## 3207 5 20 1017 4|12 low
## 3208 5 20 1017 4|12 low
## 3209 5 20 1017 4|12 low
## 3210 5 20 1017 4|12 low
## 3211 5 20 1017 4|12 low
## 3212 5 20 1017 4|12 low
## 3213 5 20 1017 4|12 low
## 3214 5 20 1017 4|12 low
## 3215 5 20 1017 4|12 low
## 3216 5 20 1017 4|12 low
## 3217 6 24 1017 4|12 low
## 3218 6 24 1017 4|12 low
## 3219 6 24 1017 4|12 low
## 3220 6 24 1017 4|12 low
## 3221 6 24 1017 4|12 low
## 3222 6 24 1017 4|12 low
## 3223 6 24 1017 4|12 low
## 3224 6 24 1017 4|12 low
## 3225 6 24 1017 4|12 low
## metaecosystem_type mean_shannon mean_richness jaccard_index
## 1 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2 Small-Large unconnected 2.0784670 11.0 0.0000000
## 3 Small-Large unconnected 2.0784670 11.0 0.0000000
## 4 Small-Large unconnected 2.0784670 11.0 0.0000000
## 5 Small-Large unconnected 2.0784670 11.0 0.0000000
## 6 Small-Large unconnected 2.0784670 11.0 0.0000000
## 7 Small-Large unconnected 2.0784670 11.0 0.0000000
## 8 Small-Large unconnected 2.0784670 11.0 0.0000000
## 9 Small-Large unconnected 2.0784670 11.0 0.0000000
## 10 Small-Large unconnected 2.0784670 11.0 0.0000000
## 11 Small-Large unconnected 2.0784670 11.0 0.0000000
## 12 Small-Large unconnected 2.0784670 11.0 0.0000000
## 13 Small-Large unconnected 2.0784670 11.0 0.0000000
## 14 Small-Large unconnected 2.0784670 11.0 0.0000000
## 15 Small-Large unconnected 2.0784670 11.0 0.0000000
## 16 Small-Large unconnected 2.0784670 11.0 0.0000000
## 17 Small-Large unconnected 2.0784670 11.0 0.0000000
## 18 Small-Large unconnected 2.0784670 11.0 0.0000000
## 19 Small-Large unconnected 2.0784670 11.0 0.0000000
## 20 Small-Large unconnected 2.0784670 11.0 0.0000000
## 21 Small-Large unconnected 2.0784670 11.0 0.0000000
## 22 Small-Large unconnected 2.0784670 11.0 0.0000000
## 23 Small-Large unconnected 2.0784670 11.0 0.0000000
## 24 Small-Large unconnected 2.0784670 11.0 0.0000000
## 25 Small-Large unconnected 1.5003642 7.5 0.3797327
## 26 Small-Large unconnected 1.5003642 7.5 0.3797327
## 27 Small-Large unconnected 1.5003642 7.5 0.3797327
## 28 Small-Large unconnected 1.5003642 7.5 0.3797327
## 29 Small-Large unconnected 1.5003642 7.5 0.3797327
## 30 Small-Large unconnected 1.5003642 7.5 0.3797327
## 31 Small-Large unconnected 1.5003642 7.5 0.3797327
## 32 Small-Large unconnected 1.5003642 7.5 0.3797327
## 33 Small-Large unconnected 1.5003642 7.5 0.3797327
## 34 Small-Large unconnected 1.5003642 7.5 0.3797327
## 35 Small-Large unconnected 1.5003642 7.5 0.3797327
## 36 Small-Large unconnected 1.5003642 7.5 0.3797327
## 37 Small-Large unconnected 1.5003642 7.5 0.3797327
## 38 Small-Large unconnected 1.5003642 7.5 0.3797327
## 39 Small-Large unconnected 1.5003642 7.5 0.3797327
## 40 Small-Large unconnected 1.5003642 7.5 0.3797327
## 41 Small-Large unconnected 1.5003642 7.5 0.3797327
## 42 Small-Large unconnected 1.5003642 7.5 0.3797327
## 43 Small-Large unconnected 1.5003642 7.5 0.3797327
## 44 Small-Large unconnected 1.5003642 7.5 0.3797327
## 45 Small-Large unconnected 1.5003642 7.5 0.3797327
## 46 Small-Large unconnected 1.5003642 7.5 0.3797327
## 47 Small-Large unconnected 1.5003642 7.5 0.3797327
## 48 Small-Large unconnected 1.5003642 7.5 0.3797327
## 49 Small-Large unconnected 1.5643953 8.0 0.5027346
## 50 Small-Large unconnected 1.5643953 8.0 0.5027346
## 51 Small-Large unconnected 1.5643953 8.0 0.5027346
## 52 Small-Large unconnected 1.5643953 8.0 0.5027346
## 53 Small-Large unconnected 1.5643953 8.0 0.5027346
## 54 Small-Large unconnected 1.5643953 8.0 0.5027346
## 55 Small-Large unconnected 1.5643953 8.0 0.5027346
## 56 Small-Large unconnected 1.5643953 8.0 0.5027346
## 57 Small-Large unconnected 1.5643953 8.0 0.5027346
## 58 Small-Large unconnected 1.5643953 8.0 0.5027346
## 59 Small-Large unconnected 1.5643953 8.0 0.5027346
## 60 Small-Large unconnected 1.5643953 8.0 0.5027346
## 61 Small-Large unconnected 1.5643953 8.0 0.5027346
## 62 Small-Large unconnected 1.5643953 8.0 0.5027346
## 63 Small-Large unconnected 1.5643953 8.0 0.5027346
## 64 Small-Large unconnected 1.5643953 8.0 0.5027346
## 65 Small-Large unconnected 1.5643953 8.0 0.5027346
## 66 Small-Large unconnected 1.5643953 8.0 0.5027346
## 67 Small-Large unconnected 1.5643953 8.0 0.5027346
## 68 Small-Large unconnected 1.5643953 8.0 0.5027346
## 69 Small-Large unconnected 1.5643953 8.0 0.5027346
## 70 Small-Large unconnected 1.5643953 8.0 0.5027346
## 71 Small-Large unconnected 1.5643953 8.0 0.5027346
## 72 Small-Large unconnected 1.5643953 8.0 0.5027346
## 73 Small-Large unconnected 1.6095690 6.0 0.8561835
## 74 Small-Large unconnected 1.6095690 6.0 0.8561835
## 75 Small-Large unconnected 1.6095690 6.0 0.8561835
## 76 Small-Large unconnected 1.6095690 6.0 0.8561835
## 77 Small-Large unconnected 1.6095690 6.0 0.8561835
## 78 Small-Large unconnected 1.6095690 6.0 0.8561835
## 79 Small-Large unconnected 1.6095690 6.0 0.8561835
## 80 Small-Large unconnected 1.6095690 6.0 0.8561835
## 81 Small-Large unconnected 1.6095690 6.0 0.8561835
## 82 Small-Large unconnected 1.6095690 6.0 0.8561835
## 83 Small-Large unconnected 1.6095690 6.0 0.8561835
## 84 Small-Large unconnected 1.6095690 6.0 0.8561835
## 85 Small-Large unconnected 1.6095690 6.0 0.8561835
## 86 Small-Large unconnected 1.6095690 6.0 0.8561835
## 87 Small-Large unconnected 1.6095690 6.0 0.8561835
## 88 Small-Large unconnected 1.6095690 6.0 0.8561835
## 89 Small-Large unconnected 1.6095690 6.0 0.8561835
## 90 Small-Large unconnected 1.6095690 6.0 0.8561835
## 91 Small-Large unconnected 1.6095690 6.0 0.8561835
## 92 Small-Large unconnected 1.6095690 6.0 0.8561835
## 93 Small-Large unconnected 1.6095690 6.0 0.8561835
## 94 Small-Large unconnected 1.6095690 6.0 0.8561835
## 95 Small-Large unconnected 1.6095690 6.0 0.8561835
## 96 Small-Large unconnected 1.6095690 6.0 0.8561835
## 97 Small-Large unconnected 1.8022460 7.5 0.4038401
## 98 Small-Large unconnected 1.8022460 7.5 0.4038401
## 99 Small-Large unconnected 1.8022460 7.5 0.4038401
## 100 Small-Large unconnected 1.8022460 7.5 0.4038401
## 101 Small-Large unconnected 1.8022460 7.5 0.4038401
## 102 Small-Large unconnected 1.8022460 7.5 0.4038401
## 103 Small-Large unconnected 1.8022460 7.5 0.4038401
## 104 Small-Large unconnected 1.8022460 7.5 0.4038401
## 105 Small-Large unconnected 1.8022460 7.5 0.4038401
## 106 Small-Large unconnected 1.8022460 7.5 0.4038401
## 107 Small-Large unconnected 1.8022460 7.5 0.4038401
## 108 Small-Large unconnected 1.8022460 7.5 0.4038401
## 109 Small-Large unconnected 1.8022460 7.5 0.4038401
## 110 Small-Large unconnected 1.8022460 7.5 0.4038401
## 111 Small-Large unconnected 1.8022460 7.5 0.4038401
## 112 Small-Large unconnected 1.8022460 7.5 0.4038401
## 113 Small-Large unconnected 1.8022460 7.5 0.4038401
## 114 Small-Large unconnected 1.8022460 7.5 0.4038401
## 115 Small-Large unconnected 1.8022460 7.5 0.4038401
## 116 Small-Large unconnected 1.8022460 7.5 0.4038401
## 117 Small-Large unconnected 1.8022460 7.5 0.4038401
## 118 Small-Large unconnected 1.8022460 7.5 0.4038401
## 119 Small-Large unconnected 1.8022460 7.5 0.4038401
## 120 Small-Large unconnected 1.8022460 7.5 0.4038401
## 121 Small-Large unconnected 0.9046531 4.0 0.8022244
## 122 Small-Large unconnected 0.9046531 4.0 0.8022244
## 123 Small-Large unconnected 0.9046531 4.0 0.8022244
## 124 Small-Large unconnected 0.9046531 4.0 0.8022244
## 125 Small-Large unconnected 0.9046531 4.0 0.8022244
## 126 Small-Large unconnected 0.9046531 4.0 0.8022244
## 127 Small-Large unconnected 0.9046531 4.0 0.8022244
## 128 Small-Large unconnected 0.9046531 4.0 0.8022244
## 129 Small-Large unconnected 0.9046531 4.0 0.8022244
## 130 Small-Large unconnected 0.9046531 4.0 0.8022244
## 131 Small-Large unconnected 0.9046531 4.0 0.8022244
## 132 Small-Large unconnected 0.9046531 4.0 0.8022244
## 133 Small-Large unconnected 0.9046531 4.0 0.8022244
## 134 Small-Large unconnected 0.9046531 4.0 0.8022244
## 135 Small-Large unconnected 0.9046531 4.0 0.8022244
## 136 Small-Large unconnected 0.9046531 4.0 0.8022244
## 137 Small-Large unconnected 0.9046531 4.0 0.8022244
## 138 Small-Large unconnected 0.9046531 4.0 0.8022244
## 139 Small-Large unconnected 0.9046531 4.0 0.8022244
## 140 Small-Large unconnected 0.9046531 4.0 0.8022244
## 141 Small-Large unconnected 0.9046531 4.0 0.8022244
## 142 Small-Large unconnected 0.9046531 4.0 0.8022244
## 143 Small-Large unconnected 0.9046531 4.0 0.8022244
## 144 Small-Large unconnected 0.9046531 4.0 0.8022244
## 145 Small-Large unconnected 1.1722772 6.0 0.8009542
## 146 Small-Large unconnected 1.1722772 6.0 0.8009542
## 147 Small-Large unconnected 1.1722772 6.0 0.8009542
## 148 Small-Large unconnected 1.1722772 6.0 0.8009542
## 149 Small-Large unconnected 1.1722772 6.0 0.8009542
## 150 Small-Large unconnected 1.1722772 6.0 0.8009542
## 151 Small-Large unconnected 1.1722772 6.0 0.8009542
## 152 Small-Large unconnected 1.1722772 6.0 0.8009542
## 153 Small-Large unconnected 1.1722772 6.0 0.8009542
## 154 Small-Large unconnected 1.1722772 6.0 0.8009542
## 155 Small-Large unconnected 1.1722772 6.0 0.8009542
## 156 Small-Large unconnected 1.1722772 6.0 0.8009542
## 157 Small-Large unconnected 1.1722772 6.0 0.8009542
## 158 Small-Large unconnected 1.1722772 6.0 0.8009542
## 159 Small-Large unconnected 1.1722772 6.0 0.8009542
## 160 Small-Large unconnected 1.1722772 6.0 0.8009542
## 161 Small-Large unconnected 1.1722772 6.0 0.8009542
## 162 Small-Large unconnected 1.1722772 6.0 0.8009542
## 163 Small-Large unconnected 1.1722772 6.0 0.8009542
## 164 Small-Large unconnected 1.1722772 6.0 0.8009542
## 165 Small-Large unconnected 1.1722772 6.0 0.8009542
## 166 Small-Large unconnected 1.1722772 6.0 0.8009542
## 167 Small-Large unconnected 1.1722772 6.0 0.8009542
## 168 Small-Large unconnected 1.1722772 6.0 0.8009542
## 169 Small-Large unconnected 0.9415572 5.5 0.9159832
## 170 Small-Large unconnected 0.9415572 5.5 0.9159832
## 171 Small-Large unconnected 0.9415572 5.5 0.9159832
## 172 Small-Large unconnected 0.9415572 5.5 0.9159832
## 173 Small-Large unconnected 0.9415572 5.5 0.9159832
## 174 Small-Large unconnected 0.9415572 5.5 0.9159832
## 175 Small-Large unconnected 0.9415572 5.5 0.9159832
## 176 Small-Large unconnected 0.9415572 5.5 0.9159832
## 177 Small-Large unconnected 0.9415572 5.5 0.9159832
## 178 Small-Large unconnected 0.9415572 5.5 0.9159832
## 179 Small-Large unconnected 0.9415572 5.5 0.9159832
## 180 Small-Large unconnected 0.9415572 5.5 0.9159832
## 181 Small-Large unconnected 0.9415572 5.5 0.9159832
## 182 Small-Large unconnected 0.9415572 5.5 0.9159832
## 183 Small-Large unconnected 0.9415572 5.5 0.9159832
## 184 Small-Large unconnected 0.9415572 5.5 0.9159832
## 185 Small-Large unconnected 0.9415572 5.5 0.9159832
## 186 Small-Large unconnected 0.9415572 5.5 0.9159832
## 187 Small-Large unconnected 0.9415572 5.5 0.9159832
## 188 Small-Large unconnected 0.9415572 5.5 0.9159832
## 189 Small-Large unconnected 0.9415572 5.5 0.9159832
## 190 Small-Large unconnected 0.9415572 5.5 0.9159832
## 191 Small-Large unconnected 0.9415572 5.5 0.9159832
## 192 Small-Large unconnected 0.9415572 5.5 0.9159832
## 193 Small-Large unconnected 2.0784670 11.0 0.0000000
## 194 Small-Large unconnected 2.0784670 11.0 0.0000000
## 195 Small-Large unconnected 2.0784670 11.0 0.0000000
## 196 Small-Large unconnected 2.0784670 11.0 0.0000000
## 197 Small-Large unconnected 2.0784670 11.0 0.0000000
## 198 Small-Large unconnected 2.0784670 11.0 0.0000000
## 199 Small-Large unconnected 2.0784670 11.0 0.0000000
## 200 Small-Large unconnected 2.0784670 11.0 0.0000000
## 201 Small-Large unconnected 2.0784670 11.0 0.0000000
## 202 Small-Large unconnected 2.0784670 11.0 0.0000000
## 203 Small-Large unconnected 2.0784670 11.0 0.0000000
## 204 Small-Large unconnected 2.0784670 11.0 0.0000000
## 205 Small-Large unconnected 2.0784670 11.0 0.0000000
## 206 Small-Large unconnected 2.0784670 11.0 0.0000000
## 207 Small-Large unconnected 2.0784670 11.0 0.0000000
## 208 Small-Large unconnected 2.0784670 11.0 0.0000000
## 209 Small-Large unconnected 2.0784670 11.0 0.0000000
## 210 Small-Large unconnected 2.0784670 11.0 0.0000000
## 211 Small-Large unconnected 2.0784670 11.0 0.0000000
## 212 Small-Large unconnected 2.0784670 11.0 0.0000000
## 213 Small-Large unconnected 2.0784670 11.0 0.0000000
## 214 Small-Large unconnected 2.0784670 11.0 0.0000000
## 215 Small-Large unconnected 2.0784670 11.0 0.0000000
## 216 Small-Large unconnected 2.0784670 11.0 0.0000000
## 217 Small-Large unconnected 1.7344675 8.0 0.5863882
## 218 Small-Large unconnected 1.7344675 8.0 0.5863882
## 219 Small-Large unconnected 1.7344675 8.0 0.5863882
## 220 Small-Large unconnected 1.7344675 8.0 0.5863882
## 221 Small-Large unconnected 1.7344675 8.0 0.5863882
## 222 Small-Large unconnected 1.7344675 8.0 0.5863882
## 223 Small-Large unconnected 1.7344675 8.0 0.5863882
## 224 Small-Large unconnected 1.7344675 8.0 0.5863882
## 225 Small-Large unconnected 1.7344675 8.0 0.5863882
## 226 Small-Large unconnected 1.7344675 8.0 0.5863882
## 227 Small-Large unconnected 1.7344675 8.0 0.5863882
## 228 Small-Large unconnected 1.7344675 8.0 0.5863882
## 229 Small-Large unconnected 1.7344675 8.0 0.5863882
## 230 Small-Large unconnected 1.7344675 8.0 0.5863882
## 231 Small-Large unconnected 1.7344675 8.0 0.5863882
## 232 Small-Large unconnected 1.7344675 8.0 0.5863882
## 233 Small-Large unconnected 1.7344675 8.0 0.5863882
## 234 Small-Large unconnected 1.7344675 8.0 0.5863882
## 235 Small-Large unconnected 1.7344675 8.0 0.5863882
## 236 Small-Large unconnected 1.7344675 8.0 0.5863882
## 237 Small-Large unconnected 1.7344675 8.0 0.5863882
## 238 Small-Large unconnected 1.7344675 8.0 0.5863882
## 239 Small-Large unconnected 1.7344675 8.0 0.5863882
## 240 Small-Large unconnected 1.7344675 8.0 0.5863882
## 241 Small-Large unconnected 1.4913521 6.5 0.4020438
## 242 Small-Large unconnected 1.4913521 6.5 0.4020438
## 243 Small-Large unconnected 1.4913521 6.5 0.4020438
## 244 Small-Large unconnected 1.4913521 6.5 0.4020438
## 245 Small-Large unconnected 1.4913521 6.5 0.4020438
## 246 Small-Large unconnected 1.4913521 6.5 0.4020438
## 247 Small-Large unconnected 1.4913521 6.5 0.4020438
## 248 Small-Large unconnected 1.4913521 6.5 0.4020438
## 249 Small-Large unconnected 1.4913521 6.5 0.4020438
## 250 Small-Large unconnected 1.4913521 6.5 0.4020438
## 251 Small-Large unconnected 1.4913521 6.5 0.4020438
## 252 Small-Large unconnected 1.4913521 6.5 0.4020438
## 253 Small-Large unconnected 1.4913521 6.5 0.4020438
## 254 Small-Large unconnected 1.4913521 6.5 0.4020438
## 255 Small-Large unconnected 1.4913521 6.5 0.4020438
## 256 Small-Large unconnected 1.4913521 6.5 0.4020438
## 257 Small-Large unconnected 1.4913521 6.5 0.4020438
## 258 Small-Large unconnected 1.4913521 6.5 0.4020438
## 259 Small-Large unconnected 1.4913521 6.5 0.4020438
## 260 Small-Large unconnected 1.4913521 6.5 0.4020438
## 261 Small-Large unconnected 1.4913521 6.5 0.4020438
## 262 Small-Large unconnected 1.4913521 6.5 0.4020438
## 263 Small-Large unconnected 1.4913521 6.5 0.4020438
## 264 Small-Large unconnected 1.4913521 6.5 0.4020438
## 265 Small-Large unconnected 1.5288340 6.0 0.9015342
## 266 Small-Large unconnected 1.5288340 6.0 0.9015342
## 267 Small-Large unconnected 1.5288340 6.0 0.9015342
## 268 Small-Large unconnected 1.5288340 6.0 0.9015342
## 269 Small-Large unconnected 1.5288340 6.0 0.9015342
## 270 Small-Large unconnected 1.5288340 6.0 0.9015342
## 271 Small-Large unconnected 1.5288340 6.0 0.9015342
## 272 Small-Large unconnected 1.5288340 6.0 0.9015342
## 273 Small-Large unconnected 1.5288340 6.0 0.9015342
## 274 Small-Large unconnected 1.5288340 6.0 0.9015342
## 275 Small-Large unconnected 1.5288340 6.0 0.9015342
## 276 Small-Large unconnected 1.5288340 6.0 0.9015342
## 277 Small-Large unconnected 1.5288340 6.0 0.9015342
## 278 Small-Large unconnected 1.5288340 6.0 0.9015342
## 279 Small-Large unconnected 1.5288340 6.0 0.9015342
## 280 Small-Large unconnected 1.5288340 6.0 0.9015342
## 281 Small-Large unconnected 1.5288340 6.0 0.9015342
## 282 Small-Large unconnected 1.5288340 6.0 0.9015342
## 283 Small-Large unconnected 1.5288340 6.0 0.9015342
## 284 Small-Large unconnected 1.5288340 6.0 0.9015342
## 285 Small-Large unconnected 1.5288340 6.0 0.9015342
## 286 Small-Large unconnected 1.5288340 6.0 0.9015342
## 287 Small-Large unconnected 1.5288340 6.0 0.9015342
## 288 Small-Large unconnected 1.5288340 6.0 0.9015342
## 289 Small-Large unconnected 1.5754616 6.0 0.5594016
## 290 Small-Large unconnected 1.5754616 6.0 0.5594016
## 291 Small-Large unconnected 1.5754616 6.0 0.5594016
## 292 Small-Large unconnected 1.5754616 6.0 0.5594016
## 293 Small-Large unconnected 1.5754616 6.0 0.5594016
## 294 Small-Large unconnected 1.5754616 6.0 0.5594016
## 295 Small-Large unconnected 1.5754616 6.0 0.5594016
## 296 Small-Large unconnected 1.5754616 6.0 0.5594016
## 297 Small-Large unconnected 1.5754616 6.0 0.5594016
## 298 Small-Large unconnected 1.5754616 6.0 0.5594016
## 299 Small-Large unconnected 1.5754616 6.0 0.5594016
## 300 Small-Large unconnected 1.5754616 6.0 0.5594016
## 301 Small-Large unconnected 1.5754616 6.0 0.5594016
## 302 Small-Large unconnected 1.5754616 6.0 0.5594016
## 303 Small-Large unconnected 1.5754616 6.0 0.5594016
## 304 Small-Large unconnected 1.5754616 6.0 0.5594016
## 305 Small-Large unconnected 1.5754616 6.0 0.5594016
## 306 Small-Large unconnected 1.5754616 6.0 0.5594016
## 307 Small-Large unconnected 1.5754616 6.0 0.5594016
## 308 Small-Large unconnected 1.5754616 6.0 0.5594016
## 309 Small-Large unconnected 1.5754616 6.0 0.5594016
## 310 Small-Large unconnected 1.5754616 6.0 0.5594016
## 311 Small-Large unconnected 1.5754616 6.0 0.5594016
## 312 Small-Large unconnected 1.5754616 6.0 0.5594016
## 313 Small-Large unconnected 1.1147692 5.0 0.7862454
## 314 Small-Large unconnected 1.1147692 5.0 0.7862454
## 315 Small-Large unconnected 1.1147692 5.0 0.7862454
## 316 Small-Large unconnected 1.1147692 5.0 0.7862454
## 317 Small-Large unconnected 1.1147692 5.0 0.7862454
## 318 Small-Large unconnected 1.1147692 5.0 0.7862454
## 319 Small-Large unconnected 1.1147692 5.0 0.7862454
## 320 Small-Large unconnected 1.1147692 5.0 0.7862454
## 321 Small-Large unconnected 1.1147692 5.0 0.7862454
## 322 Small-Large unconnected 1.1147692 5.0 0.7862454
## 323 Small-Large unconnected 1.1147692 5.0 0.7862454
## 324 Small-Large unconnected 1.1147692 5.0 0.7862454
## 325 Small-Large unconnected 1.1147692 5.0 0.7862454
## 326 Small-Large unconnected 1.1147692 5.0 0.7862454
## 327 Small-Large unconnected 1.1147692 5.0 0.7862454
## 328 Small-Large unconnected 1.1147692 5.0 0.7862454
## 329 Small-Large unconnected 1.1147692 5.0 0.7862454
## 330 Small-Large unconnected 1.1147692 5.0 0.7862454
## 331 Small-Large unconnected 1.1147692 5.0 0.7862454
## 332 Small-Large unconnected 1.1147692 5.0 0.7862454
## 333 Small-Large unconnected 1.1147692 5.0 0.7862454
## 334 Small-Large unconnected 1.1147692 5.0 0.7862454
## 335 Small-Large unconnected 1.1147692 5.0 0.7862454
## 336 Small-Large unconnected 1.1147692 5.0 0.7862454
## 337 Small-Large unconnected 1.2716771 6.0 0.7890579
## 338 Small-Large unconnected 1.2716771 6.0 0.7890579
## 339 Small-Large unconnected 1.2716771 6.0 0.7890579
## 340 Small-Large unconnected 1.2716771 6.0 0.7890579
## 341 Small-Large unconnected 1.2716771 6.0 0.7890579
## 342 Small-Large unconnected 1.2716771 6.0 0.7890579
## 343 Small-Large unconnected 1.2716771 6.0 0.7890579
## 344 Small-Large unconnected 1.2716771 6.0 0.7890579
## 345 Small-Large unconnected 1.2716771 6.0 0.7890579
## 346 Small-Large unconnected 1.2716771 6.0 0.7890579
## 347 Small-Large unconnected 1.2716771 6.0 0.7890579
## 348 Small-Large unconnected 1.2716771 6.0 0.7890579
## 349 Small-Large unconnected 1.2716771 6.0 0.7890579
## 350 Small-Large unconnected 1.2716771 6.0 0.7890579
## 351 Small-Large unconnected 1.2716771 6.0 0.7890579
## 352 Small-Large unconnected 1.2716771 6.0 0.7890579
## 353 Small-Large unconnected 1.2716771 6.0 0.7890579
## 354 Small-Large unconnected 1.2716771 6.0 0.7890579
## 355 Small-Large unconnected 1.2716771 6.0 0.7890579
## 356 Small-Large unconnected 1.2716771 6.0 0.7890579
## 357 Small-Large unconnected 1.2716771 6.0 0.7890579
## 358 Small-Large unconnected 1.2716771 6.0 0.7890579
## 359 Small-Large unconnected 1.2716771 6.0 0.7890579
## 360 Small-Large unconnected 1.2716771 6.0 0.7890579
## 361 Small-Large unconnected 1.0070034 4.5 0.9160517
## 362 Small-Large unconnected 1.0070034 4.5 0.9160517
## 363 Small-Large unconnected 1.0070034 4.5 0.9160517
## 364 Small-Large unconnected 1.0070034 4.5 0.9160517
## 365 Small-Large unconnected 1.0070034 4.5 0.9160517
## 366 Small-Large unconnected 1.0070034 4.5 0.9160517
## 367 Small-Large unconnected 1.0070034 4.5 0.9160517
## 368 Small-Large unconnected 1.0070034 4.5 0.9160517
## 369 Small-Large unconnected 1.0070034 4.5 0.9160517
## 370 Small-Large unconnected 1.0070034 4.5 0.9160517
## 371 Small-Large unconnected 1.0070034 4.5 0.9160517
## 372 Small-Large unconnected 1.0070034 4.5 0.9160517
## 373 Small-Large unconnected 1.0070034 4.5 0.9160517
## 374 Small-Large unconnected 1.0070034 4.5 0.9160517
## 375 Small-Large unconnected 1.0070034 4.5 0.9160517
## 376 Small-Large unconnected 1.0070034 4.5 0.9160517
## 377 Small-Large unconnected 1.0070034 4.5 0.9160517
## 378 Small-Large unconnected 1.0070034 4.5 0.9160517
## 379 Small-Large unconnected 1.0070034 4.5 0.9160517
## 380 Small-Large unconnected 1.0070034 4.5 0.9160517
## 381 Small-Large unconnected 1.0070034 4.5 0.9160517
## 382 Small-Large unconnected 1.0070034 4.5 0.9160517
## 383 Small-Large unconnected 1.0070034 4.5 0.9160517
## 384 Small-Large unconnected 1.0070034 4.5 0.9160517
## 385 Small-Large unconnected 2.0784670 11.0 0.0000000
## 386 Small-Large unconnected 2.0784670 11.0 0.0000000
## 387 Small-Large unconnected 2.0784670 11.0 0.0000000
## 388 Small-Large unconnected 2.0784670 11.0 0.0000000
## 389 Small-Large unconnected 2.0784670 11.0 0.0000000
## 390 Small-Large unconnected 2.0784670 11.0 0.0000000
## 391 Small-Large unconnected 2.0784670 11.0 0.0000000
## 392 Small-Large unconnected 2.0784670 11.0 0.0000000
## 393 Small-Large unconnected 2.0784670 11.0 0.0000000
## 394 Small-Large unconnected 2.0784670 11.0 0.0000000
## 395 Small-Large unconnected 2.0784670 11.0 0.0000000
## 396 Small-Large unconnected 2.0784670 11.0 0.0000000
## 397 Small-Large unconnected 2.0784670 11.0 0.0000000
## 398 Small-Large unconnected 2.0784670 11.0 0.0000000
## 399 Small-Large unconnected 2.0784670 11.0 0.0000000
## 400 Small-Large unconnected 2.0784670 11.0 0.0000000
## 401 Small-Large unconnected 2.0784670 11.0 0.0000000
## 402 Small-Large unconnected 2.0784670 11.0 0.0000000
## 403 Small-Large unconnected 2.0784670 11.0 0.0000000
## 404 Small-Large unconnected 2.0784670 11.0 0.0000000
## 405 Small-Large unconnected 2.0784670 11.0 0.0000000
## 406 Small-Large unconnected 2.0784670 11.0 0.0000000
## 407 Small-Large unconnected 2.0784670 11.0 0.0000000
## 408 Small-Large unconnected 2.0784670 11.0 0.0000000
## 409 Small-Large unconnected 1.6354094 8.0 0.5434531
## 410 Small-Large unconnected 1.6354094 8.0 0.5434531
## 411 Small-Large unconnected 1.6354094 8.0 0.5434531
## 412 Small-Large unconnected 1.6354094 8.0 0.5434531
## 413 Small-Large unconnected 1.6354094 8.0 0.5434531
## 414 Small-Large unconnected 1.6354094 8.0 0.5434531
## 415 Small-Large unconnected 1.6354094 8.0 0.5434531
## 416 Small-Large unconnected 1.6354094 8.0 0.5434531
## 417 Small-Large unconnected 1.6354094 8.0 0.5434531
## 418 Small-Large unconnected 1.6354094 8.0 0.5434531
## 419 Small-Large unconnected 1.6354094 8.0 0.5434531
## 420 Small-Large unconnected 1.6354094 8.0 0.5434531
## 421 Small-Large unconnected 1.6354094 8.0 0.5434531
## 422 Small-Large unconnected 1.6354094 8.0 0.5434531
## 423 Small-Large unconnected 1.6354094 8.0 0.5434531
## 424 Small-Large unconnected 1.6354094 8.0 0.5434531
## 425 Small-Large unconnected 1.6354094 8.0 0.5434531
## 426 Small-Large unconnected 1.6354094 8.0 0.5434531
## 427 Small-Large unconnected 1.6354094 8.0 0.5434531
## 428 Small-Large unconnected 1.6354094 8.0 0.5434531
## 429 Small-Large unconnected 1.6354094 8.0 0.5434531
## 430 Small-Large unconnected 1.6354094 8.0 0.5434531
## 431 Small-Large unconnected 1.6354094 8.0 0.5434531
## 432 Small-Large unconnected 1.6354094 8.0 0.5434531
## 433 Small-Large unconnected 1.7043816 8.5 0.4219277
## 434 Small-Large unconnected 1.7043816 8.5 0.4219277
## 435 Small-Large unconnected 1.7043816 8.5 0.4219277
## 436 Small-Large unconnected 1.7043816 8.5 0.4219277
## 437 Small-Large unconnected 1.7043816 8.5 0.4219277
## 438 Small-Large unconnected 1.7043816 8.5 0.4219277
## 439 Small-Large unconnected 1.7043816 8.5 0.4219277
## 440 Small-Large unconnected 1.7043816 8.5 0.4219277
## 441 Small-Large unconnected 1.7043816 8.5 0.4219277
## 442 Small-Large unconnected 1.7043816 8.5 0.4219277
## 443 Small-Large unconnected 1.7043816 8.5 0.4219277
## 444 Small-Large unconnected 1.7043816 8.5 0.4219277
## 445 Small-Large unconnected 1.7043816 8.5 0.4219277
## 446 Small-Large unconnected 1.7043816 8.5 0.4219277
## 447 Small-Large unconnected 1.7043816 8.5 0.4219277
## 448 Small-Large unconnected 1.7043816 8.5 0.4219277
## 449 Small-Large unconnected 1.7043816 8.5 0.4219277
## 450 Small-Large unconnected 1.7043816 8.5 0.4219277
## 451 Small-Large unconnected 1.7043816 8.5 0.4219277
## 452 Small-Large unconnected 1.7043816 8.5 0.4219277
## 453 Small-Large unconnected 1.7043816 8.5 0.4219277
## 454 Small-Large unconnected 1.7043816 8.5 0.4219277
## 455 Small-Large unconnected 1.7043816 8.5 0.4219277
## 456 Small-Large unconnected 1.7043816 8.5 0.4219277
## 457 Small-Large unconnected 1.6299430 6.5 0.8561835
## 458 Small-Large unconnected 1.6299430 6.5 0.8561835
## 459 Small-Large unconnected 1.6299430 6.5 0.8561835
## 460 Small-Large unconnected 1.6299430 6.5 0.8561835
## 461 Small-Large unconnected 1.6299430 6.5 0.8561835
## 462 Small-Large unconnected 1.6299430 6.5 0.8561835
## 463 Small-Large unconnected 1.6299430 6.5 0.8561835
## 464 Small-Large unconnected 1.6299430 6.5 0.8561835
## 465 Small-Large unconnected 1.6299430 6.5 0.8561835
## 466 Small-Large unconnected 1.6299430 6.5 0.8561835
## 467 Small-Large unconnected 1.6299430 6.5 0.8561835
## 468 Small-Large unconnected 1.6299430 6.5 0.8561835
## 469 Small-Large unconnected 1.6299430 6.5 0.8561835
## 470 Small-Large unconnected 1.6299430 6.5 0.8561835
## 471 Small-Large unconnected 1.6299430 6.5 0.8561835
## 472 Small-Large unconnected 1.6299430 6.5 0.8561835
## 473 Small-Large unconnected 1.6299430 6.5 0.8561835
## 474 Small-Large unconnected 1.6299430 6.5 0.8561835
## 475 Small-Large unconnected 1.6299430 6.5 0.8561835
## 476 Small-Large unconnected 1.6299430 6.5 0.8561835
## 477 Small-Large unconnected 1.6299430 6.5 0.8561835
## 478 Small-Large unconnected 1.6299430 6.5 0.8561835
## 479 Small-Large unconnected 1.6299430 6.5 0.8561835
## 480 Small-Large unconnected 1.6299430 6.5 0.8561835
## 481 Small-Large unconnected 1.7128054 7.0 0.5498951
## 482 Small-Large unconnected 1.7128054 7.0 0.5498951
## 483 Small-Large unconnected 1.7128054 7.0 0.5498951
## 484 Small-Large unconnected 1.7128054 7.0 0.5498951
## 485 Small-Large unconnected 1.7128054 7.0 0.5498951
## 486 Small-Large unconnected 1.7128054 7.0 0.5498951
## 487 Small-Large unconnected 1.7128054 7.0 0.5498951
## 488 Small-Large unconnected 1.7128054 7.0 0.5498951
## 489 Small-Large unconnected 1.7128054 7.0 0.5498951
## 490 Small-Large unconnected 1.7128054 7.0 0.5498951
## 491 Small-Large unconnected 1.7128054 7.0 0.5498951
## 492 Small-Large unconnected 1.7128054 7.0 0.5498951
## 493 Small-Large unconnected 1.7128054 7.0 0.5498951
## 494 Small-Large unconnected 1.7128054 7.0 0.5498951
## 495 Small-Large unconnected 1.7128054 7.0 0.5498951
## 496 Small-Large unconnected 1.7128054 7.0 0.5498951
## 497 Small-Large unconnected 1.7128054 7.0 0.5498951
## 498 Small-Large unconnected 1.7128054 7.0 0.5498951
## 499 Small-Large unconnected 1.7128054 7.0 0.5498951
## 500 Small-Large unconnected 1.7128054 7.0 0.5498951
## 501 Small-Large unconnected 1.7128054 7.0 0.5498951
## 502 Small-Large unconnected 1.7128054 7.0 0.5498951
## 503 Small-Large unconnected 1.7128054 7.0 0.5498951
## 504 Small-Large unconnected 1.7128054 7.0 0.5498951
## 505 Small-Large unconnected 0.9826256 4.0 0.8091603
## 506 Small-Large unconnected 0.9826256 4.0 0.8091603
## 507 Small-Large unconnected 0.9826256 4.0 0.8091603
## 508 Small-Large unconnected 0.9826256 4.0 0.8091603
## 509 Small-Large unconnected 0.9826256 4.0 0.8091603
## 510 Small-Large unconnected 0.9826256 4.0 0.8091603
## 511 Small-Large unconnected 0.9826256 4.0 0.8091603
## 512 Small-Large unconnected 0.9826256 4.0 0.8091603
## 513 Small-Large unconnected 0.9826256 4.0 0.8091603
## 514 Small-Large unconnected 0.9826256 4.0 0.8091603
## 515 Small-Large unconnected 0.9826256 4.0 0.8091603
## 516 Small-Large unconnected 0.9826256 4.0 0.8091603
## 517 Small-Large unconnected 0.9826256 4.0 0.8091603
## 518 Small-Large unconnected 0.9826256 4.0 0.8091603
## 519 Small-Large unconnected 0.9826256 4.0 0.8091603
## 520 Small-Large unconnected 0.9826256 4.0 0.8091603
## 521 Small-Large unconnected 0.9826256 4.0 0.8091603
## 522 Small-Large unconnected 0.9826256 4.0 0.8091603
## 523 Small-Large unconnected 0.9826256 4.0 0.8091603
## 524 Small-Large unconnected 0.9826256 4.0 0.8091603
## 525 Small-Large unconnected 0.9826256 4.0 0.8091603
## 526 Small-Large unconnected 0.9826256 4.0 0.8091603
## 527 Small-Large unconnected 0.9826256 4.0 0.8091603
## 528 Small-Large unconnected 0.9826256 4.0 0.8091603
## 529 Small-Large unconnected 1.1849855 6.5 0.7669141
## 530 Small-Large unconnected 1.1849855 6.5 0.7669141
## 531 Small-Large unconnected 1.1849855 6.5 0.7669141
## 532 Small-Large unconnected 1.1849855 6.5 0.7669141
## 533 Small-Large unconnected 1.1849855 6.5 0.7669141
## 534 Small-Large unconnected 1.1849855 6.5 0.7669141
## 535 Small-Large unconnected 1.1849855 6.5 0.7669141
## 536 Small-Large unconnected 1.1849855 6.5 0.7669141
## 537 Small-Large unconnected 1.1849855 6.5 0.7669141
## 538 Small-Large unconnected 1.1849855 6.5 0.7669141
## 539 Small-Large unconnected 1.1849855 6.5 0.7669141
## 540 Small-Large unconnected 1.1849855 6.5 0.7669141
## 541 Small-Large unconnected 1.1849855 6.5 0.7669141
## 542 Small-Large unconnected 1.1849855 6.5 0.7669141
## 543 Small-Large unconnected 1.1849855 6.5 0.7669141
## 544 Small-Large unconnected 1.1849855 6.5 0.7669141
## 545 Small-Large unconnected 1.1849855 6.5 0.7669141
## 546 Small-Large unconnected 1.1849855 6.5 0.7669141
## 547 Small-Large unconnected 1.1849855 6.5 0.7669141
## 548 Small-Large unconnected 1.1849855 6.5 0.7669141
## 549 Small-Large unconnected 1.1849855 6.5 0.7669141
## 550 Small-Large unconnected 1.1849855 6.5 0.7669141
## 551 Small-Large unconnected 1.1849855 6.5 0.7669141
## 552 Small-Large unconnected 1.1849855 6.5 0.7669141
## 553 Small-Large unconnected 0.8793394 4.5 0.9340896
## 554 Small-Large unconnected 0.8793394 4.5 0.9340896
## 555 Small-Large unconnected 0.8793394 4.5 0.9340896
## 556 Small-Large unconnected 0.8793394 4.5 0.9340896
## 557 Small-Large unconnected 0.8793394 4.5 0.9340896
## 558 Small-Large unconnected 0.8793394 4.5 0.9340896
## 559 Small-Large unconnected 0.8793394 4.5 0.9340896
## 560 Small-Large unconnected 0.8793394 4.5 0.9340896
## 561 Small-Large unconnected 0.8793394 4.5 0.9340896
## 562 Small-Large unconnected 0.8793394 4.5 0.9340896
## 563 Small-Large unconnected 0.8793394 4.5 0.9340896
## 564 Small-Large unconnected 0.8793394 4.5 0.9340896
## 565 Small-Large unconnected 0.8793394 4.5 0.9340896
## 566 Small-Large unconnected 0.8793394 4.5 0.9340896
## 567 Small-Large unconnected 0.8793394 4.5 0.9340896
## 568 Small-Large unconnected 0.8793394 4.5 0.9340896
## 569 Small-Large unconnected 0.8793394 4.5 0.9340896
## 570 Small-Large unconnected 0.8793394 4.5 0.9340896
## 571 Small-Large unconnected 0.8793394 4.5 0.9340896
## 572 Small-Large unconnected 0.8793394 4.5 0.9340896
## 573 Small-Large unconnected 0.8793394 4.5 0.9340896
## 574 Small-Large unconnected 0.8793394 4.5 0.9340896
## 575 Small-Large unconnected 0.8793394 4.5 0.9340896
## 576 Small-Large unconnected 0.8793394 4.5 0.9340896
## 577 Small-Large unconnected 2.0784670 11.0 0.0000000
## 578 Small-Large unconnected 2.0784670 11.0 0.0000000
## 579 Small-Large unconnected 2.0784670 11.0 0.0000000
## 580 Small-Large unconnected 2.0784670 11.0 0.0000000
## 581 Small-Large unconnected 2.0784670 11.0 0.0000000
## 582 Small-Large unconnected 2.0784670 11.0 0.0000000
## 583 Small-Large unconnected 2.0784670 11.0 0.0000000
## 584 Small-Large unconnected 2.0784670 11.0 0.0000000
## 585 Small-Large unconnected 2.0784670 11.0 0.0000000
## 586 Small-Large unconnected 2.0784670 11.0 0.0000000
## 587 Small-Large unconnected 2.0784670 11.0 0.0000000
## 588 Small-Large unconnected 2.0784670 11.0 0.0000000
## 589 Small-Large unconnected 2.0784670 11.0 0.0000000
## 590 Small-Large unconnected 2.0784670 11.0 0.0000000
## 591 Small-Large unconnected 2.0784670 11.0 0.0000000
## 592 Small-Large unconnected 2.0784670 11.0 0.0000000
## 593 Small-Large unconnected 2.0784670 11.0 0.0000000
## 594 Small-Large unconnected 2.0784670 11.0 0.0000000
## 595 Small-Large unconnected 2.0784670 11.0 0.0000000
## 596 Small-Large unconnected 2.0784670 11.0 0.0000000
## 597 Small-Large unconnected 2.0784670 11.0 0.0000000
## 598 Small-Large unconnected 2.0784670 11.0 0.0000000
## 599 Small-Large unconnected 2.0784670 11.0 0.0000000
## 600 Small-Large unconnected 2.0784670 11.0 0.0000000
## 601 Small-Large unconnected 1.5325570 7.0 0.6161471
## 602 Small-Large unconnected 1.5325570 7.0 0.6161471
## 603 Small-Large unconnected 1.5325570 7.0 0.6161471
## 604 Small-Large unconnected 1.5325570 7.0 0.6161471
## 605 Small-Large unconnected 1.5325570 7.0 0.6161471
## 606 Small-Large unconnected 1.5325570 7.0 0.6161471
## 607 Small-Large unconnected 1.5325570 7.0 0.6161471
## 608 Small-Large unconnected 1.5325570 7.0 0.6161471
## 609 Small-Large unconnected 1.5325570 7.0 0.6161471
## 610 Small-Large unconnected 1.5325570 7.0 0.6161471
## 611 Small-Large unconnected 1.5325570 7.0 0.6161471
## 612 Small-Large unconnected 1.5325570 7.0 0.6161471
## 613 Small-Large unconnected 1.5325570 7.0 0.6161471
## 614 Small-Large unconnected 1.5325570 7.0 0.6161471
## 615 Small-Large unconnected 1.5325570 7.0 0.6161471
## 616 Small-Large unconnected 1.5325570 7.0 0.6161471
## 617 Small-Large unconnected 1.5325570 7.0 0.6161471
## 618 Small-Large unconnected 1.5325570 7.0 0.6161471
## 619 Small-Large unconnected 1.5325570 7.0 0.6161471
## 620 Small-Large unconnected 1.5325570 7.0 0.6161471
## 621 Small-Large unconnected 1.5325570 7.0 0.6161471
## 622 Small-Large unconnected 1.5325570 7.0 0.6161471
## 623 Small-Large unconnected 1.5325570 7.0 0.6161471
## 624 Small-Large unconnected 1.5325570 7.0 0.6161471
## 625 Small-Large unconnected 1.5378489 8.0 0.5443405
## 626 Small-Large unconnected 1.5378489 8.0 0.5443405
## 627 Small-Large unconnected 1.5378489 8.0 0.5443405
## 628 Small-Large unconnected 1.5378489 8.0 0.5443405
## 629 Small-Large unconnected 1.5378489 8.0 0.5443405
## 630 Small-Large unconnected 1.5378489 8.0 0.5443405
## 631 Small-Large unconnected 1.5378489 8.0 0.5443405
## 632 Small-Large unconnected 1.5378489 8.0 0.5443405
## 633 Small-Large unconnected 1.5378489 8.0 0.5443405
## 634 Small-Large unconnected 1.5378489 8.0 0.5443405
## 635 Small-Large unconnected 1.5378489 8.0 0.5443405
## 636 Small-Large unconnected 1.5378489 8.0 0.5443405
## 637 Small-Large unconnected 1.5378489 8.0 0.5443405
## 638 Small-Large unconnected 1.5378489 8.0 0.5443405
## 639 Small-Large unconnected 1.5378489 8.0 0.5443405
## 640 Small-Large unconnected 1.5378489 8.0 0.5443405
## 641 Small-Large unconnected 1.5378489 8.0 0.5443405
## 642 Small-Large unconnected 1.5378489 8.0 0.5443405
## 643 Small-Large unconnected 1.5378489 8.0 0.5443405
## 644 Small-Large unconnected 1.5378489 8.0 0.5443405
## 645 Small-Large unconnected 1.5378489 8.0 0.5443405
## 646 Small-Large unconnected 1.5378489 8.0 0.5443405
## 647 Small-Large unconnected 1.5378489 8.0 0.5443405
## 648 Small-Large unconnected 1.5378489 8.0 0.5443405
## 649 Small-Large unconnected 1.2717353 5.0 0.8062622
## 650 Small-Large unconnected 1.2717353 5.0 0.8062622
## 651 Small-Large unconnected 1.2717353 5.0 0.8062622
## 652 Small-Large unconnected 1.2717353 5.0 0.8062622
## 653 Small-Large unconnected 1.2717353 5.0 0.8062622
## 654 Small-Large unconnected 1.2717353 5.0 0.8062622
## 655 Small-Large unconnected 1.2717353 5.0 0.8062622
## 656 Small-Large unconnected 1.2717353 5.0 0.8062622
## 657 Small-Large unconnected 1.2717353 5.0 0.8062622
## 658 Small-Large unconnected 1.2717353 5.0 0.8062622
## 659 Small-Large unconnected 1.2717353 5.0 0.8062622
## 660 Small-Large unconnected 1.2717353 5.0 0.8062622
## 661 Small-Large unconnected 1.2717353 5.0 0.8062622
## 662 Small-Large unconnected 1.2717353 5.0 0.8062622
## 663 Small-Large unconnected 1.2717353 5.0 0.8062622
## 664 Small-Large unconnected 1.2717353 5.0 0.8062622
## 665 Small-Large unconnected 1.2717353 5.0 0.8062622
## 666 Small-Large unconnected 1.2717353 5.0 0.8062622
## 667 Small-Large unconnected 1.2717353 5.0 0.8062622
## 668 Small-Large unconnected 1.2717353 5.0 0.8062622
## 669 Small-Large unconnected 1.2717353 5.0 0.8062622
## 670 Small-Large unconnected 1.2717353 5.0 0.8062622
## 671 Small-Large unconnected 1.2717353 5.0 0.8062622
## 672 Small-Large unconnected 1.2717353 5.0 0.8062622
## 673 Small-Large unconnected 1.5711195 6.5 0.5964585
## 674 Small-Large unconnected 1.5711195 6.5 0.5964585
## 675 Small-Large unconnected 1.5711195 6.5 0.5964585
## 676 Small-Large unconnected 1.5711195 6.5 0.5964585
## 677 Small-Large unconnected 1.5711195 6.5 0.5964585
## 678 Small-Large unconnected 1.5711195 6.5 0.5964585
## 679 Small-Large unconnected 1.5711195 6.5 0.5964585
## 680 Small-Large unconnected 1.5711195 6.5 0.5964585
## 681 Small-Large unconnected 1.5711195 6.5 0.5964585
## 682 Small-Large unconnected 1.5711195 6.5 0.5964585
## 683 Small-Large unconnected 1.5711195 6.5 0.5964585
## 684 Small-Large unconnected 1.5711195 6.5 0.5964585
## 685 Small-Large unconnected 1.5711195 6.5 0.5964585
## 686 Small-Large unconnected 1.5711195 6.5 0.5964585
## 687 Small-Large unconnected 1.5711195 6.5 0.5964585
## 688 Small-Large unconnected 1.5711195 6.5 0.5964585
## 689 Small-Large unconnected 1.5711195 6.5 0.5964585
## 690 Small-Large unconnected 1.5711195 6.5 0.5964585
## 691 Small-Large unconnected 1.5711195 6.5 0.5964585
## 692 Small-Large unconnected 1.5711195 6.5 0.5964585
## 693 Small-Large unconnected 1.5711195 6.5 0.5964585
## 694 Small-Large unconnected 1.5711195 6.5 0.5964585
## 695 Small-Large unconnected 1.5711195 6.5 0.5964585
## 696 Small-Large unconnected 1.5711195 6.5 0.5964585
## 697 Small-Large unconnected 0.9613777 3.5 0.7674121
## 698 Small-Large unconnected 0.9613777 3.5 0.7674121
## 699 Small-Large unconnected 0.9613777 3.5 0.7674121
## 700 Small-Large unconnected 0.9613777 3.5 0.7674121
## 701 Small-Large unconnected 0.9613777 3.5 0.7674121
## 702 Small-Large unconnected 0.9613777 3.5 0.7674121
## 703 Small-Large unconnected 0.9613777 3.5 0.7674121
## 704 Small-Large unconnected 0.9613777 3.5 0.7674121
## 705 Small-Large unconnected 0.9613777 3.5 0.7674121
## 706 Small-Large unconnected 0.9613777 3.5 0.7674121
## 707 Small-Large unconnected 0.9613777 3.5 0.7674121
## 708 Small-Large unconnected 0.9613777 3.5 0.7674121
## 709 Small-Large unconnected 0.9613777 3.5 0.7674121
## 710 Small-Large unconnected 0.9613777 3.5 0.7674121
## 711 Small-Large unconnected 0.9613777 3.5 0.7674121
## 712 Small-Large unconnected 0.9613777 3.5 0.7674121
## 713 Small-Large unconnected 0.9613777 3.5 0.7674121
## 714 Small-Large unconnected 0.9613777 3.5 0.7674121
## 715 Small-Large unconnected 0.9613777 3.5 0.7674121
## 716 Small-Large unconnected 0.9613777 3.5 0.7674121
## 717 Small-Large unconnected 0.9613777 3.5 0.7674121
## 718 Small-Large unconnected 0.9613777 3.5 0.7674121
## 719 Small-Large unconnected 0.9613777 3.5 0.7674121
## 720 Small-Large unconnected 0.9613777 3.5 0.7674121
## 721 Small-Large unconnected 1.3870793 5.5 0.6086957
## 722 Small-Large unconnected 1.3870793 5.5 0.6086957
## 723 Small-Large unconnected 1.3870793 5.5 0.6086957
## 724 Small-Large unconnected 1.3870793 5.5 0.6086957
## 725 Small-Large unconnected 1.3870793 5.5 0.6086957
## 726 Small-Large unconnected 1.3870793 5.5 0.6086957
## 727 Small-Large unconnected 1.3870793 5.5 0.6086957
## 728 Small-Large unconnected 1.3870793 5.5 0.6086957
## 729 Small-Large unconnected 1.3870793 5.5 0.6086957
## 730 Small-Large unconnected 1.3870793 5.5 0.6086957
## 731 Small-Large unconnected 1.3870793 5.5 0.6086957
## 732 Small-Large unconnected 1.3870793 5.5 0.6086957
## 733 Small-Large unconnected 1.3870793 5.5 0.6086957
## 734 Small-Large unconnected 1.3870793 5.5 0.6086957
## 735 Small-Large unconnected 1.3870793 5.5 0.6086957
## 736 Small-Large unconnected 1.3870793 5.5 0.6086957
## 737 Small-Large unconnected 1.3870793 5.5 0.6086957
## 738 Small-Large unconnected 1.3870793 5.5 0.6086957
## 739 Small-Large unconnected 1.3870793 5.5 0.6086957
## 740 Small-Large unconnected 1.3870793 5.5 0.6086957
## 741 Small-Large unconnected 1.3870793 5.5 0.6086957
## 742 Small-Large unconnected 1.3870793 5.5 0.6086957
## 743 Small-Large unconnected 1.3870793 5.5 0.6086957
## 744 Small-Large unconnected 1.3870793 5.5 0.6086957
## 745 Small-Large unconnected 0.9302665 3.5 0.6133333
## 746 Small-Large unconnected 0.9302665 3.5 0.6133333
## 747 Small-Large unconnected 0.9302665 3.5 0.6133333
## 748 Small-Large unconnected 0.9302665 3.5 0.6133333
## 749 Small-Large unconnected 0.9302665 3.5 0.6133333
## 750 Small-Large unconnected 0.9302665 3.5 0.6133333
## 751 Small-Large unconnected 0.9302665 3.5 0.6133333
## 752 Small-Large unconnected 0.9302665 3.5 0.6133333
## 753 Small-Large unconnected 0.9302665 3.5 0.6133333
## 754 Small-Large unconnected 0.9302665 3.5 0.6133333
## 755 Small-Large unconnected 0.9302665 3.5 0.6133333
## 756 Small-Large unconnected 0.9302665 3.5 0.6133333
## 757 Small-Large unconnected 0.9302665 3.5 0.6133333
## 758 Small-Large unconnected 0.9302665 3.5 0.6133333
## 759 Small-Large unconnected 0.9302665 3.5 0.6133333
## 760 Small-Large unconnected 0.9302665 3.5 0.6133333
## 761 Small-Large unconnected 0.9302665 3.5 0.6133333
## 762 Small-Large unconnected 0.9302665 3.5 0.6133333
## 763 Small-Large unconnected 0.9302665 3.5 0.6133333
## 764 Small-Large unconnected 0.9302665 3.5 0.6133333
## 765 Small-Large unconnected 0.9302665 3.5 0.6133333
## 766 Small-Large unconnected 0.9302665 3.5 0.6133333
## 767 Small-Large unconnected 0.9302665 3.5 0.6133333
## 768 Small-Large unconnected 0.9302665 3.5 0.6133333
## 769 Small-Large unconnected 2.0784670 11.0 0.0000000
## 770 Small-Large unconnected 2.0784670 11.0 0.0000000
## 771 Small-Large unconnected 2.0784670 11.0 0.0000000
## 772 Small-Large unconnected 2.0784670 11.0 0.0000000
## 773 Small-Large unconnected 2.0784670 11.0 0.0000000
## 774 Small-Large unconnected 2.0784670 11.0 0.0000000
## 775 Small-Large unconnected 2.0784670 11.0 0.0000000
## 776 Small-Large unconnected 2.0784670 11.0 0.0000000
## 777 Small-Large unconnected 2.0784670 11.0 0.0000000
## 778 Small-Large unconnected 2.0784670 11.0 0.0000000
## 779 Small-Large unconnected 2.0784670 11.0 0.0000000
## 780 Small-Large unconnected 2.0784670 11.0 0.0000000
## 781 Small-Large unconnected 2.0784670 11.0 0.0000000
## 782 Small-Large unconnected 2.0784670 11.0 0.0000000
## 783 Small-Large unconnected 2.0784670 11.0 0.0000000
## 784 Small-Large unconnected 2.0784670 11.0 0.0000000
## 785 Small-Large unconnected 2.0784670 11.0 0.0000000
## 786 Small-Large unconnected 2.0784670 11.0 0.0000000
## 787 Small-Large unconnected 2.0784670 11.0 0.0000000
## 788 Small-Large unconnected 2.0784670 11.0 0.0000000
## 789 Small-Large unconnected 2.0784670 11.0 0.0000000
## 790 Small-Large unconnected 2.0784670 11.0 0.0000000
## 791 Small-Large unconnected 2.0784670 11.0 0.0000000
## 792 Small-Large unconnected 2.0784670 11.0 0.0000000
## 793 Small-Large unconnected 1.7576182 8.0 0.6485050
## 794 Small-Large unconnected 1.7576182 8.0 0.6485050
## 795 Small-Large unconnected 1.7576182 8.0 0.6485050
## 796 Small-Large unconnected 1.7576182 8.0 0.6485050
## 797 Small-Large unconnected 1.7576182 8.0 0.6485050
## 798 Small-Large unconnected 1.7576182 8.0 0.6485050
## 799 Small-Large unconnected 1.7576182 8.0 0.6485050
## 800 Small-Large unconnected 1.7576182 8.0 0.6485050
## 801 Small-Large unconnected 1.7576182 8.0 0.6485050
## 802 Small-Large unconnected 1.7576182 8.0 0.6485050
## 803 Small-Large unconnected 1.7576182 8.0 0.6485050
## 804 Small-Large unconnected 1.7576182 8.0 0.6485050
## 805 Small-Large unconnected 1.7576182 8.0 0.6485050
## 806 Small-Large unconnected 1.7576182 8.0 0.6485050
## 807 Small-Large unconnected 1.7576182 8.0 0.6485050
## 808 Small-Large unconnected 1.7576182 8.0 0.6485050
## 809 Small-Large unconnected 1.7576182 8.0 0.6485050
## 810 Small-Large unconnected 1.7576182 8.0 0.6485050
## 811 Small-Large unconnected 1.7576182 8.0 0.6485050
## 812 Small-Large unconnected 1.7576182 8.0 0.6485050
## 813 Small-Large unconnected 1.7576182 8.0 0.6485050
## 814 Small-Large unconnected 1.7576182 8.0 0.6485050
## 815 Small-Large unconnected 1.7576182 8.0 0.6485050
## 816 Small-Large unconnected 1.7576182 8.0 0.6485050
## 817 Small-Large unconnected 1.6208829 7.5 0.5405548
## 818 Small-Large unconnected 1.6208829 7.5 0.5405548
## 819 Small-Large unconnected 1.6208829 7.5 0.5405548
## 820 Small-Large unconnected 1.6208829 7.5 0.5405548
## 821 Small-Large unconnected 1.6208829 7.5 0.5405548
## 822 Small-Large unconnected 1.6208829 7.5 0.5405548
## 823 Small-Large unconnected 1.6208829 7.5 0.5405548
## 824 Small-Large unconnected 1.6208829 7.5 0.5405548
## 825 Small-Large unconnected 1.6208829 7.5 0.5405548
## 826 Small-Large unconnected 1.6208829 7.5 0.5405548
## 827 Small-Large unconnected 1.6208829 7.5 0.5405548
## 828 Small-Large unconnected 1.6208829 7.5 0.5405548
## 829 Small-Large unconnected 1.6208829 7.5 0.5405548
## 830 Small-Large unconnected 1.6208829 7.5 0.5405548
## 831 Small-Large unconnected 1.6208829 7.5 0.5405548
## 832 Small-Large unconnected 1.6208829 7.5 0.5405548
## 833 Small-Large unconnected 1.6208829 7.5 0.5405548
## 834 Small-Large unconnected 1.6208829 7.5 0.5405548
## 835 Small-Large unconnected 1.6208829 7.5 0.5405548
## 836 Small-Large unconnected 1.6208829 7.5 0.5405548
## 837 Small-Large unconnected 1.6208829 7.5 0.5405548
## 838 Small-Large unconnected 1.6208829 7.5 0.5405548
## 839 Small-Large unconnected 1.6208829 7.5 0.5405548
## 840 Small-Large unconnected 1.6208829 7.5 0.5405548
## 841 Small-Large unconnected 1.5861251 6.0 0.8562784
## 842 Small-Large unconnected 1.5861251 6.0 0.8562784
## 843 Small-Large unconnected 1.5861251 6.0 0.8562784
## 844 Small-Large unconnected 1.5861251 6.0 0.8562784
## 845 Small-Large unconnected 1.5861251 6.0 0.8562784
## 846 Small-Large unconnected 1.5861251 6.0 0.8562784
## 847 Small-Large unconnected 1.5861251 6.0 0.8562784
## 848 Small-Large unconnected 1.5861251 6.0 0.8562784
## 849 Small-Large unconnected 1.5861251 6.0 0.8562784
## 850 Small-Large unconnected 1.5861251 6.0 0.8562784
## 851 Small-Large unconnected 1.5861251 6.0 0.8562784
## 852 Small-Large unconnected 1.5861251 6.0 0.8562784
## 853 Small-Large unconnected 1.5861251 6.0 0.8562784
## 854 Small-Large unconnected 1.5861251 6.0 0.8562784
## 855 Small-Large unconnected 1.5861251 6.0 0.8562784
## 856 Small-Large unconnected 1.5861251 6.0 0.8562784
## 857 Small-Large unconnected 1.5861251 6.0 0.8562784
## 858 Small-Large unconnected 1.5861251 6.0 0.8562784
## 859 Small-Large unconnected 1.5861251 6.0 0.8562784
## 860 Small-Large unconnected 1.5861251 6.0 0.8562784
## 861 Small-Large unconnected 1.5861251 6.0 0.8562784
## 862 Small-Large unconnected 1.5861251 6.0 0.8562784
## 863 Small-Large unconnected 1.5861251 6.0 0.8562784
## 864 Small-Large unconnected 1.5861251 6.0 0.8562784
## 865 Small-Large unconnected 1.6705149 7.5 0.5076640
## 866 Small-Large unconnected 1.6705149 7.5 0.5076640
## 867 Small-Large unconnected 1.6705149 7.5 0.5076640
## 868 Small-Large unconnected 1.6705149 7.5 0.5076640
## 869 Small-Large unconnected 1.6705149 7.5 0.5076640
## 870 Small-Large unconnected 1.6705149 7.5 0.5076640
## 871 Small-Large unconnected 1.6705149 7.5 0.5076640
## 872 Small-Large unconnected 1.6705149 7.5 0.5076640
## 873 Small-Large unconnected 1.6705149 7.5 0.5076640
## 874 Small-Large unconnected 1.6705149 7.5 0.5076640
## 875 Small-Large unconnected 1.6705149 7.5 0.5076640
## 876 Small-Large unconnected 1.6705149 7.5 0.5076640
## 877 Small-Large unconnected 1.6705149 7.5 0.5076640
## 878 Small-Large unconnected 1.6705149 7.5 0.5076640
## 879 Small-Large unconnected 1.6705149 7.5 0.5076640
## 880 Small-Large unconnected 1.6705149 7.5 0.5076640
## 881 Small-Large unconnected 1.6705149 7.5 0.5076640
## 882 Small-Large unconnected 1.6705149 7.5 0.5076640
## 883 Small-Large unconnected 1.6705149 7.5 0.5076640
## 884 Small-Large unconnected 1.6705149 7.5 0.5076640
## 885 Small-Large unconnected 1.6705149 7.5 0.5076640
## 886 Small-Large unconnected 1.6705149 7.5 0.5076640
## 887 Small-Large unconnected 1.6705149 7.5 0.5076640
## 888 Small-Large unconnected 1.6705149 7.5 0.5076640
## 889 Small-Large unconnected 1.1807457 5.0 0.8075314
## 890 Small-Large unconnected 1.1807457 5.0 0.8075314
## 891 Small-Large unconnected 1.1807457 5.0 0.8075314
## 892 Small-Large unconnected 1.1807457 5.0 0.8075314
## 893 Small-Large unconnected 1.1807457 5.0 0.8075314
## 894 Small-Large unconnected 1.1807457 5.0 0.8075314
## 895 Small-Large unconnected 1.1807457 5.0 0.8075314
## 896 Small-Large unconnected 1.1807457 5.0 0.8075314
## 897 Small-Large unconnected 1.1807457 5.0 0.8075314
## 898 Small-Large unconnected 1.1807457 5.0 0.8075314
## 899 Small-Large unconnected 1.1807457 5.0 0.8075314
## 900 Small-Large unconnected 1.1807457 5.0 0.8075314
## 901 Small-Large unconnected 1.1807457 5.0 0.8075314
## 902 Small-Large unconnected 1.1807457 5.0 0.8075314
## 903 Small-Large unconnected 1.1807457 5.0 0.8075314
## 904 Small-Large unconnected 1.1807457 5.0 0.8075314
## 905 Small-Large unconnected 1.1807457 5.0 0.8075314
## 906 Small-Large unconnected 1.1807457 5.0 0.8075314
## 907 Small-Large unconnected 1.1807457 5.0 0.8075314
## 908 Small-Large unconnected 1.1807457 5.0 0.8075314
## 909 Small-Large unconnected 1.1807457 5.0 0.8075314
## 910 Small-Large unconnected 1.1807457 5.0 0.8075314
## 911 Small-Large unconnected 1.1807457 5.0 0.8075314
## 912 Small-Large unconnected 1.1807457 5.0 0.8075314
## 913 Small-Large unconnected 1.5071598 6.5 0.8093303
## 914 Small-Large unconnected 1.5071598 6.5 0.8093303
## 915 Small-Large unconnected 1.5071598 6.5 0.8093303
## 916 Small-Large unconnected 1.5071598 6.5 0.8093303
## 917 Small-Large unconnected 1.5071598 6.5 0.8093303
## 918 Small-Large unconnected 1.5071598 6.5 0.8093303
## 919 Small-Large unconnected 1.5071598 6.5 0.8093303
## 920 Small-Large unconnected 1.5071598 6.5 0.8093303
## 921 Small-Large unconnected 1.5071598 6.5 0.8093303
## 922 Small-Large unconnected 1.5071598 6.5 0.8093303
## 923 Small-Large unconnected 1.5071598 6.5 0.8093303
## 924 Small-Large unconnected 1.5071598 6.5 0.8093303
## 925 Small-Large unconnected 1.5071598 6.5 0.8093303
## 926 Small-Large unconnected 1.5071598 6.5 0.8093303
## 927 Small-Large unconnected 1.5071598 6.5 0.8093303
## 928 Small-Large unconnected 1.5071598 6.5 0.8093303
## 929 Small-Large unconnected 1.5071598 6.5 0.8093303
## 930 Small-Large unconnected 1.5071598 6.5 0.8093303
## 931 Small-Large unconnected 1.5071598 6.5 0.8093303
## 932 Small-Large unconnected 1.5071598 6.5 0.8093303
## 933 Small-Large unconnected 1.5071598 6.5 0.8093303
## 934 Small-Large unconnected 1.5071598 6.5 0.8093303
## 935 Small-Large unconnected 1.5071598 6.5 0.8093303
## 936 Small-Large unconnected 1.5071598 6.5 0.8093303
## 937 Small-Large unconnected 0.9391687 5.0 0.9203269
## 938 Small-Large unconnected 0.9391687 5.0 0.9203269
## 939 Small-Large unconnected 0.9391687 5.0 0.9203269
## 940 Small-Large unconnected 0.9391687 5.0 0.9203269
## 941 Small-Large unconnected 0.9391687 5.0 0.9203269
## 942 Small-Large unconnected 0.9391687 5.0 0.9203269
## 943 Small-Large unconnected 0.9391687 5.0 0.9203269
## 944 Small-Large unconnected 0.9391687 5.0 0.9203269
## 945 Small-Large unconnected 0.9391687 5.0 0.9203269
## 946 Small-Large unconnected 0.9391687 5.0 0.9203269
## 947 Small-Large unconnected 0.9391687 5.0 0.9203269
## 948 Small-Large unconnected 0.9391687 5.0 0.9203269
## 949 Small-Large unconnected 0.9391687 5.0 0.9203269
## 950 Small-Large unconnected 0.9391687 5.0 0.9203269
## 951 Small-Large unconnected 0.9391687 5.0 0.9203269
## 952 Small-Large unconnected 0.9391687 5.0 0.9203269
## 953 Small-Large unconnected 0.9391687 5.0 0.9203269
## 954 Small-Large unconnected 0.9391687 5.0 0.9203269
## 955 Small-Large unconnected 0.9391687 5.0 0.9203269
## 956 Small-Large unconnected 0.9391687 5.0 0.9203269
## 957 Small-Large unconnected 0.9391687 5.0 0.9203269
## 958 Small-Large unconnected 0.9391687 5.0 0.9203269
## 959 Small-Large unconnected 0.9391687 5.0 0.9203269
## 960 Small-Large unconnected 0.9391687 5.0 0.9203269
## 961 Small-Large unconnected 2.0784670 11.0 0.0000000
## 962 Small-Large unconnected 2.0784670 11.0 0.0000000
## 963 Small-Large unconnected 2.0784670 11.0 0.0000000
## 964 Small-Large unconnected 2.0784670 11.0 0.0000000
## 965 Small-Large unconnected 2.0784670 11.0 0.0000000
## 966 Small-Large unconnected 2.0784670 11.0 0.0000000
## 967 Small-Large unconnected 2.0784670 11.0 0.0000000
## 968 Small-Large unconnected 2.0784670 11.0 0.0000000
## 969 Small-Large unconnected 2.0784670 11.0 0.0000000
## 970 Small-Large unconnected 2.0784670 11.0 0.0000000
## 971 Small-Large unconnected 2.0784670 11.0 0.0000000
## 972 Small-Large unconnected 2.0784670 11.0 0.0000000
## 973 Small-Large unconnected 2.0784670 11.0 0.0000000
## 974 Small-Large unconnected 2.0784670 11.0 0.0000000
## 975 Small-Large unconnected 2.0784670 11.0 0.0000000
## 976 Small-Large unconnected 2.0784670 11.0 0.0000000
## 977 Small-Large unconnected 2.0784670 11.0 0.0000000
## 978 Small-Large unconnected 2.0784670 11.0 0.0000000
## 979 Small-Large unconnected 2.0784670 11.0 0.0000000
## 980 Small-Large unconnected 2.0784670 11.0 0.0000000
## 981 Small-Large unconnected 2.0784670 11.0 0.0000000
## 982 Small-Large unconnected 2.0784670 11.0 0.0000000
## 983 Small-Large unconnected 2.0784670 11.0 0.0000000
## 984 Small-Large unconnected 2.0784670 11.0 0.0000000
## 985 Small-Large unconnected 1.5540186 8.0 0.4775502
## 986 Small-Large unconnected 1.5540186 8.0 0.4775502
## 987 Small-Large unconnected 1.5540186 8.0 0.4775502
## 988 Small-Large unconnected 1.5540186 8.0 0.4775502
## 989 Small-Large unconnected 1.5540186 8.0 0.4775502
## 990 Small-Large unconnected 1.5540186 8.0 0.4775502
## 991 Small-Large unconnected 1.5540186 8.0 0.4775502
## 992 Small-Large unconnected 1.5540186 8.0 0.4775502
## 993 Small-Large unconnected 1.5540186 8.0 0.4775502
## 994 Small-Large unconnected 1.5540186 8.0 0.4775502
## 995 Small-Large unconnected 1.5540186 8.0 0.4775502
## 996 Small-Large unconnected 1.5540186 8.0 0.4775502
## 997 Small-Large unconnected 1.5540186 8.0 0.4775502
## 998 Small-Large unconnected 1.5540186 8.0 0.4775502
## 999 Small-Large unconnected 1.5540186 8.0 0.4775502
## 1000 Small-Large unconnected 1.5540186 8.0 0.4775502
## 1001 Small-Large unconnected 1.5540186 8.0 0.4775502
## 1002 Small-Large unconnected 1.5540186 8.0 0.4775502
## 1003 Small-Large unconnected 1.5540186 8.0 0.4775502
## 1004 Small-Large unconnected 1.5540186 8.0 0.4775502
## 1005 Small-Large unconnected 1.5540186 8.0 0.4775502
## 1006 Small-Large unconnected 1.5540186 8.0 0.4775502
## 1007 Small-Large unconnected 1.5540186 8.0 0.4775502
## 1008 Small-Large unconnected 1.5540186 8.0 0.4775502
## 1009 Small-Large unconnected 1.5213817 8.5 0.6802785
## 1010 Small-Large unconnected 1.5213817 8.5 0.6802785
## 1011 Small-Large unconnected 1.5213817 8.5 0.6802785
## 1012 Small-Large unconnected 1.5213817 8.5 0.6802785
## 1013 Small-Large unconnected 1.5213817 8.5 0.6802785
## 1014 Small-Large unconnected 1.5213817 8.5 0.6802785
## 1015 Small-Large unconnected 1.5213817 8.5 0.6802785
## 1016 Small-Large unconnected 1.5213817 8.5 0.6802785
## 1017 Small-Large unconnected 1.5213817 8.5 0.6802785
## 1018 Small-Large unconnected 1.5213817 8.5 0.6802785
## 1019 Small-Large unconnected 1.5213817 8.5 0.6802785
## 1020 Small-Large unconnected 1.5213817 8.5 0.6802785
## 1021 Small-Large unconnected 1.5213817 8.5 0.6802785
## 1022 Small-Large unconnected 1.5213817 8.5 0.6802785
## 1023 Small-Large unconnected 1.5213817 8.5 0.6802785
## 1024 Small-Large unconnected 1.5213817 8.5 0.6802785
## 1025 Small-Large unconnected 1.5213817 8.5 0.6802785
## 1026 Small-Large unconnected 1.5213817 8.5 0.6802785
## 1027 Small-Large unconnected 1.5213817 8.5 0.6802785
## 1028 Small-Large unconnected 1.5213817 8.5 0.6802785
## 1029 Small-Large unconnected 1.5213817 8.5 0.6802785
## 1030 Small-Large unconnected 1.5213817 8.5 0.6802785
## 1031 Small-Large unconnected 1.5213817 8.5 0.6802785
## 1032 Small-Large unconnected 1.5213817 8.5 0.6802785
## 1033 Small-Large unconnected 1.7632593 7.0 0.4519279
## 1034 Small-Large unconnected 1.7632593 7.0 0.4519279
## 1035 Small-Large unconnected 1.7632593 7.0 0.4519279
## 1036 Small-Large unconnected 1.7632593 7.0 0.4519279
## 1037 Small-Large unconnected 1.7632593 7.0 0.4519279
## 1038 Small-Large unconnected 1.7632593 7.0 0.4519279
## 1039 Small-Large unconnected 1.7632593 7.0 0.4519279
## 1040 Small-Large unconnected 1.7632593 7.0 0.4519279
## 1041 Small-Large unconnected 1.7632593 7.0 0.4519279
## 1042 Small-Large unconnected 1.7632593 7.0 0.4519279
## 1043 Small-Large unconnected 1.7632593 7.0 0.4519279
## 1044 Small-Large unconnected 1.7632593 7.0 0.4519279
## 1045 Small-Large unconnected 1.7632593 7.0 0.4519279
## 1046 Small-Large unconnected 1.7632593 7.0 0.4519279
## 1047 Small-Large unconnected 1.7632593 7.0 0.4519279
## 1048 Small-Large unconnected 1.7632593 7.0 0.4519279
## 1049 Small-Large unconnected 1.7632593 7.0 0.4519279
## 1050 Small-Large unconnected 1.7632593 7.0 0.4519279
## 1051 Small-Large unconnected 1.7632593 7.0 0.4519279
## 1052 Small-Large unconnected 1.7632593 7.0 0.4519279
## 1053 Small-Large unconnected 1.7632593 7.0 0.4519279
## 1054 Small-Large unconnected 1.7632593 7.0 0.4519279
## 1055 Small-Large unconnected 1.7632593 7.0 0.4519279
## 1056 Small-Large unconnected 1.7632593 7.0 0.4519279
## 1057 Small-Large unconnected 1.3837136 5.5 0.6129142
## 1058 Small-Large unconnected 1.3837136 5.5 0.6129142
## 1059 Small-Large unconnected 1.3837136 5.5 0.6129142
## 1060 Small-Large unconnected 1.3837136 5.5 0.6129142
## 1061 Small-Large unconnected 1.3837136 5.5 0.6129142
## 1062 Small-Large unconnected 1.3837136 5.5 0.6129142
## 1063 Small-Large unconnected 1.3837136 5.5 0.6129142
## 1064 Small-Large unconnected 1.3837136 5.5 0.6129142
## 1065 Small-Large unconnected 1.3837136 5.5 0.6129142
## 1066 Small-Large unconnected 1.3837136 5.5 0.6129142
## 1067 Small-Large unconnected 1.3837136 5.5 0.6129142
## 1068 Small-Large unconnected 1.3837136 5.5 0.6129142
## 1069 Small-Large unconnected 1.3837136 5.5 0.6129142
## 1070 Small-Large unconnected 1.3837136 5.5 0.6129142
## 1071 Small-Large unconnected 1.3837136 5.5 0.6129142
## 1072 Small-Large unconnected 1.3837136 5.5 0.6129142
## 1073 Small-Large unconnected 1.3837136 5.5 0.6129142
## 1074 Small-Large unconnected 1.3837136 5.5 0.6129142
## 1075 Small-Large unconnected 1.3837136 5.5 0.6129142
## 1076 Small-Large unconnected 1.3837136 5.5 0.6129142
## 1077 Small-Large unconnected 1.3837136 5.5 0.6129142
## 1078 Small-Large unconnected 1.3837136 5.5 0.6129142
## 1079 Small-Large unconnected 1.3837136 5.5 0.6129142
## 1080 Small-Large unconnected 1.3837136 5.5 0.6129142
## 1081 Small-Large unconnected 1.1906786 4.5 0.9314463
## 1082 Small-Large unconnected 1.1906786 4.5 0.9314463
## 1083 Small-Large unconnected 1.1906786 4.5 0.9314463
## 1084 Small-Large unconnected 1.1906786 4.5 0.9314463
## 1085 Small-Large unconnected 1.1906786 4.5 0.9314463
## 1086 Small-Large unconnected 1.1906786 4.5 0.9314463
## 1087 Small-Large unconnected 1.1906786 4.5 0.9314463
## 1088 Small-Large unconnected 1.1906786 4.5 0.9314463
## 1089 Small-Large unconnected 1.1906786 4.5 0.9314463
## 1090 Small-Large unconnected 1.1906786 4.5 0.9314463
## 1091 Small-Large unconnected 1.1906786 4.5 0.9314463
## 1092 Small-Large unconnected 1.1906786 4.5 0.9314463
## 1093 Small-Large unconnected 1.1906786 4.5 0.9314463
## 1094 Small-Large unconnected 1.1906786 4.5 0.9314463
## 1095 Small-Large unconnected 1.1906786 4.5 0.9314463
## 1096 Small-Large unconnected 1.1906786 4.5 0.9314463
## 1097 Small-Large unconnected 1.1906786 4.5 0.9314463
## 1098 Small-Large unconnected 1.1906786 4.5 0.9314463
## 1099 Small-Large unconnected 1.1906786 4.5 0.9314463
## 1100 Small-Large unconnected 1.1906786 4.5 0.9314463
## 1101 Small-Large unconnected 1.1906786 4.5 0.9314463
## 1102 Small-Large unconnected 1.1906786 4.5 0.9314463
## 1103 Small-Large unconnected 1.1906786 4.5 0.9314463
## 1104 Small-Large unconnected 1.1906786 4.5 0.9314463
## 1105 Small-Large unconnected 0.5580146 4.0 0.8940736
## 1106 Small-Large unconnected 0.5580146 4.0 0.8940736
## 1107 Small-Large unconnected 0.5580146 4.0 0.8940736
## 1108 Small-Large unconnected 0.5580146 4.0 0.8940736
## 1109 Small-Large unconnected 0.5580146 4.0 0.8940736
## 1110 Small-Large unconnected 0.5580146 4.0 0.8940736
## 1111 Small-Large unconnected 0.5580146 4.0 0.8940736
## 1112 Small-Large unconnected 0.5580146 4.0 0.8940736
## 1113 Small-Large unconnected 0.5580146 4.0 0.8940736
## 1114 Small-Large unconnected 0.5580146 4.0 0.8940736
## 1115 Small-Large unconnected 0.5580146 4.0 0.8940736
## 1116 Small-Large unconnected 0.5580146 4.0 0.8940736
## 1117 Small-Large unconnected 0.5580146 4.0 0.8940736
## 1118 Small-Large unconnected 0.5580146 4.0 0.8940736
## 1119 Small-Large unconnected 0.5580146 4.0 0.8940736
## 1120 Small-Large unconnected 0.5580146 4.0 0.8940736
## 1121 Small-Large unconnected 0.5580146 4.0 0.8940736
## 1122 Small-Large unconnected 0.5580146 4.0 0.8940736
## 1123 Small-Large unconnected 0.5580146 4.0 0.8940736
## 1124 Small-Large unconnected 0.5580146 4.0 0.8940736
## 1125 Small-Large unconnected 0.5580146 4.0 0.8940736
## 1126 Small-Large unconnected 0.5580146 4.0 0.8940736
## 1127 Small-Large unconnected 0.5580146 4.0 0.8940736
## 1128 Small-Large unconnected 0.5580146 4.0 0.8940736
## 1129 Small-Large unconnected 0.6573424 5.0 0.9461440
## 1130 Small-Large unconnected 0.6573424 5.0 0.9461440
## 1131 Small-Large unconnected 0.6573424 5.0 0.9461440
## 1132 Small-Large unconnected 0.6573424 5.0 0.9461440
## 1133 Small-Large unconnected 0.6573424 5.0 0.9461440
## 1134 Small-Large unconnected 0.6573424 5.0 0.9461440
## 1135 Small-Large unconnected 0.6573424 5.0 0.9461440
## 1136 Small-Large unconnected 0.6573424 5.0 0.9461440
## 1137 Small-Large unconnected 0.6573424 5.0 0.9461440
## 1138 Small-Large unconnected 0.6573424 5.0 0.9461440
## 1139 Small-Large unconnected 0.6573424 5.0 0.9461440
## 1140 Small-Large unconnected 0.6573424 5.0 0.9461440
## 1141 Small-Large unconnected 0.6573424 5.0 0.9461440
## 1142 Small-Large unconnected 0.6573424 5.0 0.9461440
## 1143 Small-Large unconnected 0.6573424 5.0 0.9461440
## 1144 Small-Large unconnected 0.6573424 5.0 0.9461440
## 1145 Small-Large unconnected 0.6573424 5.0 0.9461440
## 1146 Small-Large unconnected 0.6573424 5.0 0.9461440
## 1147 Small-Large unconnected 0.6573424 5.0 0.9461440
## 1148 Small-Large unconnected 0.6573424 5.0 0.9461440
## 1149 Small-Large unconnected 0.6573424 5.0 0.9461440
## 1150 Small-Large unconnected 0.6573424 5.0 0.9461440
## 1151 Small-Large unconnected 0.6573424 5.0 0.9461440
## 1152 Small-Large unconnected 0.6573424 5.0 0.9461440
## 1153 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1154 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1155 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1156 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1157 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1158 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1159 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1160 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1161 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1162 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1163 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1164 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1165 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1166 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1167 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1168 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1169 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1170 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1171 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1172 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1173 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1174 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1175 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1176 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1177 Small-Large unconnected 1.7881218 8.5 0.4851643
## 1178 Small-Large unconnected 1.7881218 8.5 0.4851643
## 1179 Small-Large unconnected 1.7881218 8.5 0.4851643
## 1180 Small-Large unconnected 1.7881218 8.5 0.4851643
## 1181 Small-Large unconnected 1.7881218 8.5 0.4851643
## 1182 Small-Large unconnected 1.7881218 8.5 0.4851643
## 1183 Small-Large unconnected 1.7881218 8.5 0.4851643
## 1184 Small-Large unconnected 1.7881218 8.5 0.4851643
## 1185 Small-Large unconnected 1.7881218 8.5 0.4851643
## 1186 Small-Large unconnected 1.7881218 8.5 0.4851643
## 1187 Small-Large unconnected 1.7881218 8.5 0.4851643
## 1188 Small-Large unconnected 1.7881218 8.5 0.4851643
## 1189 Small-Large unconnected 1.7881218 8.5 0.4851643
## 1190 Small-Large unconnected 1.7881218 8.5 0.4851643
## 1191 Small-Large unconnected 1.7881218 8.5 0.4851643
## 1192 Small-Large unconnected 1.7881218 8.5 0.4851643
## 1193 Small-Large unconnected 1.7881218 8.5 0.4851643
## 1194 Small-Large unconnected 1.7881218 8.5 0.4851643
## 1195 Small-Large unconnected 1.7881218 8.5 0.4851643
## 1196 Small-Large unconnected 1.7881218 8.5 0.4851643
## 1197 Small-Large unconnected 1.7881218 8.5 0.4851643
## 1198 Small-Large unconnected 1.7881218 8.5 0.4851643
## 1199 Small-Large unconnected 1.7881218 8.5 0.4851643
## 1200 Small-Large unconnected 1.7881218 8.5 0.4851643
## 1201 Small-Large unconnected 1.4483385 7.0 0.6127187
## 1202 Small-Large unconnected 1.4483385 7.0 0.6127187
## 1203 Small-Large unconnected 1.4483385 7.0 0.6127187
## 1204 Small-Large unconnected 1.4483385 7.0 0.6127187
## 1205 Small-Large unconnected 1.4483385 7.0 0.6127187
## 1206 Small-Large unconnected 1.4483385 7.0 0.6127187
## 1207 Small-Large unconnected 1.4483385 7.0 0.6127187
## 1208 Small-Large unconnected 1.4483385 7.0 0.6127187
## 1209 Small-Large unconnected 1.4483385 7.0 0.6127187
## 1210 Small-Large unconnected 1.4483385 7.0 0.6127187
## 1211 Small-Large unconnected 1.4483385 7.0 0.6127187
## 1212 Small-Large unconnected 1.4483385 7.0 0.6127187
## 1213 Small-Large unconnected 1.4483385 7.0 0.6127187
## 1214 Small-Large unconnected 1.4483385 7.0 0.6127187
## 1215 Small-Large unconnected 1.4483385 7.0 0.6127187
## 1216 Small-Large unconnected 1.4483385 7.0 0.6127187
## 1217 Small-Large unconnected 1.4483385 7.0 0.6127187
## 1218 Small-Large unconnected 1.4483385 7.0 0.6127187
## 1219 Small-Large unconnected 1.4483385 7.0 0.6127187
## 1220 Small-Large unconnected 1.4483385 7.0 0.6127187
## 1221 Small-Large unconnected 1.4483385 7.0 0.6127187
## 1222 Small-Large unconnected 1.4483385 7.0 0.6127187
## 1223 Small-Large unconnected 1.4483385 7.0 0.6127187
## 1224 Small-Large unconnected 1.4483385 7.0 0.6127187
## 1225 Small-Large unconnected 1.6825243 7.0 0.5191233
## 1226 Small-Large unconnected 1.6825243 7.0 0.5191233
## 1227 Small-Large unconnected 1.6825243 7.0 0.5191233
## 1228 Small-Large unconnected 1.6825243 7.0 0.5191233
## 1229 Small-Large unconnected 1.6825243 7.0 0.5191233
## 1230 Small-Large unconnected 1.6825243 7.0 0.5191233
## 1231 Small-Large unconnected 1.6825243 7.0 0.5191233
## 1232 Small-Large unconnected 1.6825243 7.0 0.5191233
## 1233 Small-Large unconnected 1.6825243 7.0 0.5191233
## 1234 Small-Large unconnected 1.6825243 7.0 0.5191233
## 1235 Small-Large unconnected 1.6825243 7.0 0.5191233
## 1236 Small-Large unconnected 1.6825243 7.0 0.5191233
## 1237 Small-Large unconnected 1.6825243 7.0 0.5191233
## 1238 Small-Large unconnected 1.6825243 7.0 0.5191233
## 1239 Small-Large unconnected 1.6825243 7.0 0.5191233
## 1240 Small-Large unconnected 1.6825243 7.0 0.5191233
## 1241 Small-Large unconnected 1.6825243 7.0 0.5191233
## 1242 Small-Large unconnected 1.6825243 7.0 0.5191233
## 1243 Small-Large unconnected 1.6825243 7.0 0.5191233
## 1244 Small-Large unconnected 1.6825243 7.0 0.5191233
## 1245 Small-Large unconnected 1.6825243 7.0 0.5191233
## 1246 Small-Large unconnected 1.6825243 7.0 0.5191233
## 1247 Small-Large unconnected 1.6825243 7.0 0.5191233
## 1248 Small-Large unconnected 1.6825243 7.0 0.5191233
## 1249 Small-Large unconnected 1.1569293 4.0 0.7495992
## 1250 Small-Large unconnected 1.1569293 4.0 0.7495992
## 1251 Small-Large unconnected 1.1569293 4.0 0.7495992
## 1252 Small-Large unconnected 1.1569293 4.0 0.7495992
## 1253 Small-Large unconnected 1.1569293 4.0 0.7495992
## 1254 Small-Large unconnected 1.1569293 4.0 0.7495992
## 1255 Small-Large unconnected 1.1569293 4.0 0.7495992
## 1256 Small-Large unconnected 1.1569293 4.0 0.7495992
## 1257 Small-Large unconnected 1.1569293 4.0 0.7495992
## 1258 Small-Large unconnected 1.1569293 4.0 0.7495992
## 1259 Small-Large unconnected 1.1569293 4.0 0.7495992
## 1260 Small-Large unconnected 1.1569293 4.0 0.7495992
## 1261 Small-Large unconnected 1.1569293 4.0 0.7495992
## 1262 Small-Large unconnected 1.1569293 4.0 0.7495992
## 1263 Small-Large unconnected 1.1569293 4.0 0.7495992
## 1264 Small-Large unconnected 1.1569293 4.0 0.7495992
## 1265 Small-Large unconnected 1.1569293 4.0 0.7495992
## 1266 Small-Large unconnected 1.1569293 4.0 0.7495992
## 1267 Small-Large unconnected 1.1569293 4.0 0.7495992
## 1268 Small-Large unconnected 1.1569293 4.0 0.7495992
## 1269 Small-Large unconnected 1.1569293 4.0 0.7495992
## 1270 Small-Large unconnected 1.1569293 4.0 0.7495992
## 1271 Small-Large unconnected 1.1569293 4.0 0.7495992
## 1272 Small-Large unconnected 1.1569293 4.0 0.7495992
## 1273 Small-Large unconnected 1.4007946 5.5 0.8509009
## 1274 Small-Large unconnected 1.4007946 5.5 0.8509009
## 1275 Small-Large unconnected 1.4007946 5.5 0.8509009
## 1276 Small-Large unconnected 1.4007946 5.5 0.8509009
## 1277 Small-Large unconnected 1.4007946 5.5 0.8509009
## 1278 Small-Large unconnected 1.4007946 5.5 0.8509009
## 1279 Small-Large unconnected 1.4007946 5.5 0.8509009
## 1280 Small-Large unconnected 1.4007946 5.5 0.8509009
## 1281 Small-Large unconnected 1.4007946 5.5 0.8509009
## 1282 Small-Large unconnected 1.4007946 5.5 0.8509009
## 1283 Small-Large unconnected 1.4007946 5.5 0.8509009
## 1284 Small-Large unconnected 1.4007946 5.5 0.8509009
## 1285 Small-Large unconnected 1.4007946 5.5 0.8509009
## 1286 Small-Large unconnected 1.4007946 5.5 0.8509009
## 1287 Small-Large unconnected 1.4007946 5.5 0.8509009
## 1288 Small-Large unconnected 1.4007946 5.5 0.8509009
## 1289 Small-Large unconnected 1.4007946 5.5 0.8509009
## 1290 Small-Large unconnected 1.4007946 5.5 0.8509009
## 1291 Small-Large unconnected 1.4007946 5.5 0.8509009
## 1292 Small-Large unconnected 1.4007946 5.5 0.8509009
## 1293 Small-Large unconnected 1.4007946 5.5 0.8509009
## 1294 Small-Large unconnected 1.4007946 5.5 0.8509009
## 1295 Small-Large unconnected 1.4007946 5.5 0.8509009
## 1296 Small-Large unconnected 1.4007946 5.5 0.8509009
## 1297 Small-Large unconnected 0.6574145 4.0 0.8908058
## 1298 Small-Large unconnected 0.6574145 4.0 0.8908058
## 1299 Small-Large unconnected 0.6574145 4.0 0.8908058
## 1300 Small-Large unconnected 0.6574145 4.0 0.8908058
## 1301 Small-Large unconnected 0.6574145 4.0 0.8908058
## 1302 Small-Large unconnected 0.6574145 4.0 0.8908058
## 1303 Small-Large unconnected 0.6574145 4.0 0.8908058
## 1304 Small-Large unconnected 0.6574145 4.0 0.8908058
## 1305 Small-Large unconnected 0.6574145 4.0 0.8908058
## 1306 Small-Large unconnected 0.6574145 4.0 0.8908058
## 1307 Small-Large unconnected 0.6574145 4.0 0.8908058
## 1308 Small-Large unconnected 0.6574145 4.0 0.8908058
## 1309 Small-Large unconnected 0.6574145 4.0 0.8908058
## 1310 Small-Large unconnected 0.6574145 4.0 0.8908058
## 1311 Small-Large unconnected 0.6574145 4.0 0.8908058
## 1312 Small-Large unconnected 0.6574145 4.0 0.8908058
## 1313 Small-Large unconnected 0.6574145 4.0 0.8908058
## 1314 Small-Large unconnected 0.6574145 4.0 0.8908058
## 1315 Small-Large unconnected 0.6574145 4.0 0.8908058
## 1316 Small-Large unconnected 0.6574145 4.0 0.8908058
## 1317 Small-Large unconnected 0.6574145 4.0 0.8908058
## 1318 Small-Large unconnected 0.6574145 4.0 0.8908058
## 1319 Small-Large unconnected 0.6574145 4.0 0.8908058
## 1320 Small-Large unconnected 0.6574145 4.0 0.8908058
## 1321 Small-Large unconnected 0.7227886 4.0 0.9301829
## 1322 Small-Large unconnected 0.7227886 4.0 0.9301829
## 1323 Small-Large unconnected 0.7227886 4.0 0.9301829
## 1324 Small-Large unconnected 0.7227886 4.0 0.9301829
## 1325 Small-Large unconnected 0.7227886 4.0 0.9301829
## 1326 Small-Large unconnected 0.7227886 4.0 0.9301829
## 1327 Small-Large unconnected 0.7227886 4.0 0.9301829
## 1328 Small-Large unconnected 0.7227886 4.0 0.9301829
## 1329 Small-Large unconnected 0.7227886 4.0 0.9301829
## 1330 Small-Large unconnected 0.7227886 4.0 0.9301829
## 1331 Small-Large unconnected 0.7227886 4.0 0.9301829
## 1332 Small-Large unconnected 0.7227886 4.0 0.9301829
## 1333 Small-Large unconnected 0.7227886 4.0 0.9301829
## 1334 Small-Large unconnected 0.7227886 4.0 0.9301829
## 1335 Small-Large unconnected 0.7227886 4.0 0.9301829
## 1336 Small-Large unconnected 0.7227886 4.0 0.9301829
## 1337 Small-Large unconnected 0.7227886 4.0 0.9301829
## 1338 Small-Large unconnected 0.7227886 4.0 0.9301829
## 1339 Small-Large unconnected 0.7227886 4.0 0.9301829
## 1340 Small-Large unconnected 0.7227886 4.0 0.9301829
## 1341 Small-Large unconnected 0.7227886 4.0 0.9301829
## 1342 Small-Large unconnected 0.7227886 4.0 0.9301829
## 1343 Small-Large unconnected 0.7227886 4.0 0.9301829
## 1344 Small-Large unconnected 0.7227886 4.0 0.9301829
## 1345 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1346 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1347 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1348 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1349 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1350 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1351 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1352 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1353 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1354 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1355 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1356 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1357 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1358 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1359 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1360 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1361 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1362 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1363 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1364 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1365 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1366 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1367 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1368 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1369 Small-Large unconnected 1.6890637 8.5 0.5151939
## 1370 Small-Large unconnected 1.6890637 8.5 0.5151939
## 1371 Small-Large unconnected 1.6890637 8.5 0.5151939
## 1372 Small-Large unconnected 1.6890637 8.5 0.5151939
## 1373 Small-Large unconnected 1.6890637 8.5 0.5151939
## 1374 Small-Large unconnected 1.6890637 8.5 0.5151939
## 1375 Small-Large unconnected 1.6890637 8.5 0.5151939
## 1376 Small-Large unconnected 1.6890637 8.5 0.5151939
## 1377 Small-Large unconnected 1.6890637 8.5 0.5151939
## 1378 Small-Large unconnected 1.6890637 8.5 0.5151939
## 1379 Small-Large unconnected 1.6890637 8.5 0.5151939
## 1380 Small-Large unconnected 1.6890637 8.5 0.5151939
## 1381 Small-Large unconnected 1.6890637 8.5 0.5151939
## 1382 Small-Large unconnected 1.6890637 8.5 0.5151939
## 1383 Small-Large unconnected 1.6890637 8.5 0.5151939
## 1384 Small-Large unconnected 1.6890637 8.5 0.5151939
## 1385 Small-Large unconnected 1.6890637 8.5 0.5151939
## 1386 Small-Large unconnected 1.6890637 8.5 0.5151939
## 1387 Small-Large unconnected 1.6890637 8.5 0.5151939
## 1388 Small-Large unconnected 1.6890637 8.5 0.5151939
## 1389 Small-Large unconnected 1.6890637 8.5 0.5151939
## 1390 Small-Large unconnected 1.6890637 8.5 0.5151939
## 1391 Small-Large unconnected 1.6890637 8.5 0.5151939
## 1392 Small-Large unconnected 1.6890637 8.5 0.5151939
## 1393 Small-Large unconnected 1.6613680 9.0 0.6067317
## 1394 Small-Large unconnected 1.6613680 9.0 0.6067317
## 1395 Small-Large unconnected 1.6613680 9.0 0.6067317
## 1396 Small-Large unconnected 1.6613680 9.0 0.6067317
## 1397 Small-Large unconnected 1.6613680 9.0 0.6067317
## 1398 Small-Large unconnected 1.6613680 9.0 0.6067317
## 1399 Small-Large unconnected 1.6613680 9.0 0.6067317
## 1400 Small-Large unconnected 1.6613680 9.0 0.6067317
## 1401 Small-Large unconnected 1.6613680 9.0 0.6067317
## 1402 Small-Large unconnected 1.6613680 9.0 0.6067317
## 1403 Small-Large unconnected 1.6613680 9.0 0.6067317
## 1404 Small-Large unconnected 1.6613680 9.0 0.6067317
## 1405 Small-Large unconnected 1.6613680 9.0 0.6067317
## 1406 Small-Large unconnected 1.6613680 9.0 0.6067317
## 1407 Small-Large unconnected 1.6613680 9.0 0.6067317
## 1408 Small-Large unconnected 1.6613680 9.0 0.6067317
## 1409 Small-Large unconnected 1.6613680 9.0 0.6067317
## 1410 Small-Large unconnected 1.6613680 9.0 0.6067317
## 1411 Small-Large unconnected 1.6613680 9.0 0.6067317
## 1412 Small-Large unconnected 1.6613680 9.0 0.6067317
## 1413 Small-Large unconnected 1.6613680 9.0 0.6067317
## 1414 Small-Large unconnected 1.6613680 9.0 0.6067317
## 1415 Small-Large unconnected 1.6613680 9.0 0.6067317
## 1416 Small-Large unconnected 1.6613680 9.0 0.6067317
## 1417 Small-Large unconnected 1.7836333 7.5 0.5057999
## 1418 Small-Large unconnected 1.7836333 7.5 0.5057999
## 1419 Small-Large unconnected 1.7836333 7.5 0.5057999
## 1420 Small-Large unconnected 1.7836333 7.5 0.5057999
## 1421 Small-Large unconnected 1.7836333 7.5 0.5057999
## 1422 Small-Large unconnected 1.7836333 7.5 0.5057999
## 1423 Small-Large unconnected 1.7836333 7.5 0.5057999
## 1424 Small-Large unconnected 1.7836333 7.5 0.5057999
## 1425 Small-Large unconnected 1.7836333 7.5 0.5057999
## 1426 Small-Large unconnected 1.7836333 7.5 0.5057999
## 1427 Small-Large unconnected 1.7836333 7.5 0.5057999
## 1428 Small-Large unconnected 1.7836333 7.5 0.5057999
## 1429 Small-Large unconnected 1.7836333 7.5 0.5057999
## 1430 Small-Large unconnected 1.7836333 7.5 0.5057999
## 1431 Small-Large unconnected 1.7836333 7.5 0.5057999
## 1432 Small-Large unconnected 1.7836333 7.5 0.5057999
## 1433 Small-Large unconnected 1.7836333 7.5 0.5057999
## 1434 Small-Large unconnected 1.7836333 7.5 0.5057999
## 1435 Small-Large unconnected 1.7836333 7.5 0.5057999
## 1436 Small-Large unconnected 1.7836333 7.5 0.5057999
## 1437 Small-Large unconnected 1.7836333 7.5 0.5057999
## 1438 Small-Large unconnected 1.7836333 7.5 0.5057999
## 1439 Small-Large unconnected 1.7836333 7.5 0.5057999
## 1440 Small-Large unconnected 1.7836333 7.5 0.5057999
## 1441 Small-Large unconnected 1.2942730 5.0 0.7453294
## 1442 Small-Large unconnected 1.2942730 5.0 0.7453294
## 1443 Small-Large unconnected 1.2942730 5.0 0.7453294
## 1444 Small-Large unconnected 1.2942730 5.0 0.7453294
## 1445 Small-Large unconnected 1.2942730 5.0 0.7453294
## 1446 Small-Large unconnected 1.2942730 5.0 0.7453294
## 1447 Small-Large unconnected 1.2942730 5.0 0.7453294
## 1448 Small-Large unconnected 1.2942730 5.0 0.7453294
## 1449 Small-Large unconnected 1.2942730 5.0 0.7453294
## 1450 Small-Large unconnected 1.2942730 5.0 0.7453294
## 1451 Small-Large unconnected 1.2942730 5.0 0.7453294
## 1452 Small-Large unconnected 1.2942730 5.0 0.7453294
## 1453 Small-Large unconnected 1.2942730 5.0 0.7453294
## 1454 Small-Large unconnected 1.2942730 5.0 0.7453294
## 1455 Small-Large unconnected 1.2942730 5.0 0.7453294
## 1456 Small-Large unconnected 1.2942730 5.0 0.7453294
## 1457 Small-Large unconnected 1.2942730 5.0 0.7453294
## 1458 Small-Large unconnected 1.2942730 5.0 0.7453294
## 1459 Small-Large unconnected 1.2942730 5.0 0.7453294
## 1460 Small-Large unconnected 1.2942730 5.0 0.7453294
## 1461 Small-Large unconnected 1.2942730 5.0 0.7453294
## 1462 Small-Large unconnected 1.2942730 5.0 0.7453294
## 1463 Small-Large unconnected 1.2942730 5.0 0.7453294
## 1464 Small-Large unconnected 1.2942730 5.0 0.7453294
## 1465 Small-Large unconnected 1.2686511 4.5 0.9064490
## 1466 Small-Large unconnected 1.2686511 4.5 0.9064490
## 1467 Small-Large unconnected 1.2686511 4.5 0.9064490
## 1468 Small-Large unconnected 1.2686511 4.5 0.9064490
## 1469 Small-Large unconnected 1.2686511 4.5 0.9064490
## 1470 Small-Large unconnected 1.2686511 4.5 0.9064490
## 1471 Small-Large unconnected 1.2686511 4.5 0.9064490
## 1472 Small-Large unconnected 1.2686511 4.5 0.9064490
## 1473 Small-Large unconnected 1.2686511 4.5 0.9064490
## 1474 Small-Large unconnected 1.2686511 4.5 0.9064490
## 1475 Small-Large unconnected 1.2686511 4.5 0.9064490
## 1476 Small-Large unconnected 1.2686511 4.5 0.9064490
## 1477 Small-Large unconnected 1.2686511 4.5 0.9064490
## 1478 Small-Large unconnected 1.2686511 4.5 0.9064490
## 1479 Small-Large unconnected 1.2686511 4.5 0.9064490
## 1480 Small-Large unconnected 1.2686511 4.5 0.9064490
## 1481 Small-Large unconnected 1.2686511 4.5 0.9064490
## 1482 Small-Large unconnected 1.2686511 4.5 0.9064490
## 1483 Small-Large unconnected 1.2686511 4.5 0.9064490
## 1484 Small-Large unconnected 1.2686511 4.5 0.9064490
## 1485 Small-Large unconnected 1.2686511 4.5 0.9064490
## 1486 Small-Large unconnected 1.2686511 4.5 0.9064490
## 1487 Small-Large unconnected 1.2686511 4.5 0.9064490
## 1488 Small-Large unconnected 1.2686511 4.5 0.9064490
## 1489 Small-Large unconnected 0.5707230 4.5 0.8832972
## 1490 Small-Large unconnected 0.5707230 4.5 0.8832972
## 1491 Small-Large unconnected 0.5707230 4.5 0.8832972
## 1492 Small-Large unconnected 0.5707230 4.5 0.8832972
## 1493 Small-Large unconnected 0.5707230 4.5 0.8832972
## 1494 Small-Large unconnected 0.5707230 4.5 0.8832972
## 1495 Small-Large unconnected 0.5707230 4.5 0.8832972
## 1496 Small-Large unconnected 0.5707230 4.5 0.8832972
## 1497 Small-Large unconnected 0.5707230 4.5 0.8832972
## 1498 Small-Large unconnected 0.5707230 4.5 0.8832972
## 1499 Small-Large unconnected 0.5707230 4.5 0.8832972
## 1500 Small-Large unconnected 0.5707230 4.5 0.8832972
## 1501 Small-Large unconnected 0.5707230 4.5 0.8832972
## 1502 Small-Large unconnected 0.5707230 4.5 0.8832972
## 1503 Small-Large unconnected 0.5707230 4.5 0.8832972
## 1504 Small-Large unconnected 0.5707230 4.5 0.8832972
## 1505 Small-Large unconnected 0.5707230 4.5 0.8832972
## 1506 Small-Large unconnected 0.5707230 4.5 0.8832972
## 1507 Small-Large unconnected 0.5707230 4.5 0.8832972
## 1508 Small-Large unconnected 0.5707230 4.5 0.8832972
## 1509 Small-Large unconnected 0.5707230 4.5 0.8832972
## 1510 Small-Large unconnected 0.5707230 4.5 0.8832972
## 1511 Small-Large unconnected 0.5707230 4.5 0.8832972
## 1512 Small-Large unconnected 0.5707230 4.5 0.8832972
## 1513 Small-Large unconnected 0.5951247 4.0 0.9576002
## 1514 Small-Large unconnected 0.5951247 4.0 0.9576002
## 1515 Small-Large unconnected 0.5951247 4.0 0.9576002
## 1516 Small-Large unconnected 0.5951247 4.0 0.9576002
## 1517 Small-Large unconnected 0.5951247 4.0 0.9576002
## 1518 Small-Large unconnected 0.5951247 4.0 0.9576002
## 1519 Small-Large unconnected 0.5951247 4.0 0.9576002
## 1520 Small-Large unconnected 0.5951247 4.0 0.9576002
## 1521 Small-Large unconnected 0.5951247 4.0 0.9576002
## 1522 Small-Large unconnected 0.5951247 4.0 0.9576002
## 1523 Small-Large unconnected 0.5951247 4.0 0.9576002
## 1524 Small-Large unconnected 0.5951247 4.0 0.9576002
## 1525 Small-Large unconnected 0.5951247 4.0 0.9576002
## 1526 Small-Large unconnected 0.5951247 4.0 0.9576002
## 1527 Small-Large unconnected 0.5951247 4.0 0.9576002
## 1528 Small-Large unconnected 0.5951247 4.0 0.9576002
## 1529 Small-Large unconnected 0.5951247 4.0 0.9576002
## 1530 Small-Large unconnected 0.5951247 4.0 0.9576002
## 1531 Small-Large unconnected 0.5951247 4.0 0.9576002
## 1532 Small-Large unconnected 0.5951247 4.0 0.9576002
## 1533 Small-Large unconnected 0.5951247 4.0 0.9576002
## 1534 Small-Large unconnected 0.5951247 4.0 0.9576002
## 1535 Small-Large unconnected 0.5951247 4.0 0.9576002
## 1536 Small-Large unconnected 0.5951247 4.0 0.9576002
## 1537 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1538 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1539 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1540 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1541 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1542 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1543 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1544 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1545 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1546 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1547 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1548 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1549 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1550 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1551 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1552 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1553 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1554 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1555 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1556 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1557 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1558 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1559 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1560 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1561 Small-Large unconnected 1.5862113 7.5 0.3935303
## 1562 Small-Large unconnected 1.5862113 7.5 0.3935303
## 1563 Small-Large unconnected 1.5862113 7.5 0.3935303
## 1564 Small-Large unconnected 1.5862113 7.5 0.3935303
## 1565 Small-Large unconnected 1.5862113 7.5 0.3935303
## 1566 Small-Large unconnected 1.5862113 7.5 0.3935303
## 1567 Small-Large unconnected 1.5862113 7.5 0.3935303
## 1568 Small-Large unconnected 1.5862113 7.5 0.3935303
## 1569 Small-Large unconnected 1.5862113 7.5 0.3935303
## 1570 Small-Large unconnected 1.5862113 7.5 0.3935303
## 1571 Small-Large unconnected 1.5862113 7.5 0.3935303
## 1572 Small-Large unconnected 1.5862113 7.5 0.3935303
## 1573 Small-Large unconnected 1.5862113 7.5 0.3935303
## 1574 Small-Large unconnected 1.5862113 7.5 0.3935303
## 1575 Small-Large unconnected 1.5862113 7.5 0.3935303
## 1576 Small-Large unconnected 1.5862113 7.5 0.3935303
## 1577 Small-Large unconnected 1.5862113 7.5 0.3935303
## 1578 Small-Large unconnected 1.5862113 7.5 0.3935303
## 1579 Small-Large unconnected 1.5862113 7.5 0.3935303
## 1580 Small-Large unconnected 1.5862113 7.5 0.3935303
## 1581 Small-Large unconnected 1.5862113 7.5 0.3935303
## 1582 Small-Large unconnected 1.5862113 7.5 0.3935303
## 1583 Small-Large unconnected 1.5862113 7.5 0.3935303
## 1584 Small-Large unconnected 1.5862113 7.5 0.3935303
## 1585 Small-Large unconnected 1.4948352 8.5 0.6102781
## 1586 Small-Large unconnected 1.4948352 8.5 0.6102781
## 1587 Small-Large unconnected 1.4948352 8.5 0.6102781
## 1588 Small-Large unconnected 1.4948352 8.5 0.6102781
## 1589 Small-Large unconnected 1.4948352 8.5 0.6102781
## 1590 Small-Large unconnected 1.4948352 8.5 0.6102781
## 1591 Small-Large unconnected 1.4948352 8.5 0.6102781
## 1592 Small-Large unconnected 1.4948352 8.5 0.6102781
## 1593 Small-Large unconnected 1.4948352 8.5 0.6102781
## 1594 Small-Large unconnected 1.4948352 8.5 0.6102781
## 1595 Small-Large unconnected 1.4948352 8.5 0.6102781
## 1596 Small-Large unconnected 1.4948352 8.5 0.6102781
## 1597 Small-Large unconnected 1.4948352 8.5 0.6102781
## 1598 Small-Large unconnected 1.4948352 8.5 0.6102781
## 1599 Small-Large unconnected 1.4948352 8.5 0.6102781
## 1600 Small-Large unconnected 1.4948352 8.5 0.6102781
## 1601 Small-Large unconnected 1.4948352 8.5 0.6102781
## 1602 Small-Large unconnected 1.4948352 8.5 0.6102781
## 1603 Small-Large unconnected 1.4948352 8.5 0.6102781
## 1604 Small-Large unconnected 1.4948352 8.5 0.6102781
## 1605 Small-Large unconnected 1.4948352 8.5 0.6102781
## 1606 Small-Large unconnected 1.4948352 8.5 0.6102781
## 1607 Small-Large unconnected 1.4948352 8.5 0.6102781
## 1608 Small-Large unconnected 1.4948352 8.5 0.6102781
## 1609 Small-Large unconnected 1.4254256 6.0 0.5077328
## 1610 Small-Large unconnected 1.4254256 6.0 0.5077328
## 1611 Small-Large unconnected 1.4254256 6.0 0.5077328
## 1612 Small-Large unconnected 1.4254256 6.0 0.5077328
## 1613 Small-Large unconnected 1.4254256 6.0 0.5077328
## 1614 Small-Large unconnected 1.4254256 6.0 0.5077328
## 1615 Small-Large unconnected 1.4254256 6.0 0.5077328
## 1616 Small-Large unconnected 1.4254256 6.0 0.5077328
## 1617 Small-Large unconnected 1.4254256 6.0 0.5077328
## 1618 Small-Large unconnected 1.4254256 6.0 0.5077328
## 1619 Small-Large unconnected 1.4254256 6.0 0.5077328
## 1620 Small-Large unconnected 1.4254256 6.0 0.5077328
## 1621 Small-Large unconnected 1.4254256 6.0 0.5077328
## 1622 Small-Large unconnected 1.4254256 6.0 0.5077328
## 1623 Small-Large unconnected 1.4254256 6.0 0.5077328
## 1624 Small-Large unconnected 1.4254256 6.0 0.5077328
## 1625 Small-Large unconnected 1.4254256 6.0 0.5077328
## 1626 Small-Large unconnected 1.4254256 6.0 0.5077328
## 1627 Small-Large unconnected 1.4254256 6.0 0.5077328
## 1628 Small-Large unconnected 1.4254256 6.0 0.5077328
## 1629 Small-Large unconnected 1.4254256 6.0 0.5077328
## 1630 Small-Large unconnected 1.4254256 6.0 0.5077328
## 1631 Small-Large unconnected 1.4254256 6.0 0.5077328
## 1632 Small-Large unconnected 1.4254256 6.0 0.5077328
## 1633 Small-Large unconnected 1.1525871 4.5 0.7699053
## 1634 Small-Large unconnected 1.1525871 4.5 0.7699053
## 1635 Small-Large unconnected 1.1525871 4.5 0.7699053
## 1636 Small-Large unconnected 1.1525871 4.5 0.7699053
## 1637 Small-Large unconnected 1.1525871 4.5 0.7699053
## 1638 Small-Large unconnected 1.1525871 4.5 0.7699053
## 1639 Small-Large unconnected 1.1525871 4.5 0.7699053
## 1640 Small-Large unconnected 1.1525871 4.5 0.7699053
## 1641 Small-Large unconnected 1.1525871 4.5 0.7699053
## 1642 Small-Large unconnected 1.1525871 4.5 0.7699053
## 1643 Small-Large unconnected 1.1525871 4.5 0.7699053
## 1644 Small-Large unconnected 1.1525871 4.5 0.7699053
## 1645 Small-Large unconnected 1.1525871 4.5 0.7699053
## 1646 Small-Large unconnected 1.1525871 4.5 0.7699053
## 1647 Small-Large unconnected 1.1525871 4.5 0.7699053
## 1648 Small-Large unconnected 1.1525871 4.5 0.7699053
## 1649 Small-Large unconnected 1.1525871 4.5 0.7699053
## 1650 Small-Large unconnected 1.1525871 4.5 0.7699053
## 1651 Small-Large unconnected 1.1525871 4.5 0.7699053
## 1652 Small-Large unconnected 1.1525871 4.5 0.7699053
## 1653 Small-Large unconnected 1.1525871 4.5 0.7699053
## 1654 Small-Large unconnected 1.1525871 4.5 0.7699053
## 1655 Small-Large unconnected 1.1525871 4.5 0.7699053
## 1656 Small-Large unconnected 1.1525871 4.5 0.7699053
## 1657 Small-Large unconnected 1.2474031 4.0 0.9374289
## 1658 Small-Large unconnected 1.2474031 4.0 0.9374289
## 1659 Small-Large unconnected 1.2474031 4.0 0.9374289
## 1660 Small-Large unconnected 1.2474031 4.0 0.9374289
## 1661 Small-Large unconnected 1.2474031 4.0 0.9374289
## 1662 Small-Large unconnected 1.2474031 4.0 0.9374289
## 1663 Small-Large unconnected 1.2474031 4.0 0.9374289
## 1664 Small-Large unconnected 1.2474031 4.0 0.9374289
## 1665 Small-Large unconnected 1.2474031 4.0 0.9374289
## 1666 Small-Large unconnected 1.2474031 4.0 0.9374289
## 1667 Small-Large unconnected 1.2474031 4.0 0.9374289
## 1668 Small-Large unconnected 1.2474031 4.0 0.9374289
## 1669 Small-Large unconnected 1.2474031 4.0 0.9374289
## 1670 Small-Large unconnected 1.2474031 4.0 0.9374289
## 1671 Small-Large unconnected 1.2474031 4.0 0.9374289
## 1672 Small-Large unconnected 1.2474031 4.0 0.9374289
## 1673 Small-Large unconnected 1.2474031 4.0 0.9374289
## 1674 Small-Large unconnected 1.2474031 4.0 0.9374289
## 1675 Small-Large unconnected 1.2474031 4.0 0.9374289
## 1676 Small-Large unconnected 1.2474031 4.0 0.9374289
## 1677 Small-Large unconnected 1.2474031 4.0 0.9374289
## 1678 Small-Large unconnected 1.2474031 4.0 0.9374289
## 1679 Small-Large unconnected 1.2474031 4.0 0.9374289
## 1680 Small-Large unconnected 1.2474031 4.0 0.9374289
## 1681 Small-Large unconnected 0.7728167 3.5 0.7388350
## 1682 Small-Large unconnected 0.7728167 3.5 0.7388350
## 1683 Small-Large unconnected 0.7728167 3.5 0.7388350
## 1684 Small-Large unconnected 0.7728167 3.5 0.7388350
## 1685 Small-Large unconnected 0.7728167 3.5 0.7388350
## 1686 Small-Large unconnected 0.7728167 3.5 0.7388350
## 1687 Small-Large unconnected 0.7728167 3.5 0.7388350
## 1688 Small-Large unconnected 0.7728167 3.5 0.7388350
## 1689 Small-Large unconnected 0.7728167 3.5 0.7388350
## 1690 Small-Large unconnected 0.7728167 3.5 0.7388350
## 1691 Small-Large unconnected 0.7728167 3.5 0.7388350
## 1692 Small-Large unconnected 0.7728167 3.5 0.7388350
## 1693 Small-Large unconnected 0.7728167 3.5 0.7388350
## 1694 Small-Large unconnected 0.7728167 3.5 0.7388350
## 1695 Small-Large unconnected 0.7728167 3.5 0.7388350
## 1696 Small-Large unconnected 0.7728167 3.5 0.7388350
## 1697 Small-Large unconnected 0.7728167 3.5 0.7388350
## 1698 Small-Large unconnected 0.7728167 3.5 0.7388350
## 1699 Small-Large unconnected 0.7728167 3.5 0.7388350
## 1700 Small-Large unconnected 0.7728167 3.5 0.7388350
## 1701 Small-Large unconnected 0.7728167 3.5 0.7388350
## 1702 Small-Large unconnected 0.7728167 3.5 0.7388350
## 1703 Small-Large unconnected 0.7728167 3.5 0.7388350
## 1704 Small-Large unconnected 0.7728167 3.5 0.7388350
## 1705 Small-Large unconnected 0.6460517 3.0 0.7497872
## 1706 Small-Large unconnected 0.6460517 3.0 0.7497872
## 1707 Small-Large unconnected 0.6460517 3.0 0.7497872
## 1708 Small-Large unconnected 0.6460517 3.0 0.7497872
## 1709 Small-Large unconnected 0.6460517 3.0 0.7497872
## 1710 Small-Large unconnected 0.6460517 3.0 0.7497872
## 1711 Small-Large unconnected 0.6460517 3.0 0.7497872
## 1712 Small-Large unconnected 0.6460517 3.0 0.7497872
## 1713 Small-Large unconnected 0.6460517 3.0 0.7497872
## 1714 Small-Large unconnected 0.6460517 3.0 0.7497872
## 1715 Small-Large unconnected 0.6460517 3.0 0.7497872
## 1716 Small-Large unconnected 0.6460517 3.0 0.7497872
## 1717 Small-Large unconnected 0.6460517 3.0 0.7497872
## 1718 Small-Large unconnected 0.6460517 3.0 0.7497872
## 1719 Small-Large unconnected 0.6460517 3.0 0.7497872
## 1720 Small-Large unconnected 0.6460517 3.0 0.7497872
## 1721 Small-Large unconnected 0.6460517 3.0 0.7497872
## 1722 Small-Large unconnected 0.6460517 3.0 0.7497872
## 1723 Small-Large unconnected 0.6460517 3.0 0.7497872
## 1724 Small-Large unconnected 0.6460517 3.0 0.7497872
## 1725 Small-Large unconnected 0.6460517 3.0 0.7497872
## 1726 Small-Large unconnected 0.6460517 3.0 0.7497872
## 1727 Small-Large unconnected 0.6460517 3.0 0.7497872
## 1728 Small-Large unconnected 0.6460517 3.0 0.7497872
## 1729 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1730 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1731 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1732 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1733 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1734 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1735 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1736 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1737 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1738 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1739 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1740 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1741 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1742 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1743 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1744 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1745 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1746 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1747 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1748 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1749 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1750 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1751 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1752 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1753 Small-Large unconnected 1.8112725 8.5 0.5241108
## 1754 Small-Large unconnected 1.8112725 8.5 0.5241108
## 1755 Small-Large unconnected 1.8112725 8.5 0.5241108
## 1756 Small-Large unconnected 1.8112725 8.5 0.5241108
## 1757 Small-Large unconnected 1.8112725 8.5 0.5241108
## 1758 Small-Large unconnected 1.8112725 8.5 0.5241108
## 1759 Small-Large unconnected 1.8112725 8.5 0.5241108
## 1760 Small-Large unconnected 1.8112725 8.5 0.5241108
## 1761 Small-Large unconnected 1.8112725 8.5 0.5241108
## 1762 Small-Large unconnected 1.8112725 8.5 0.5241108
## 1763 Small-Large unconnected 1.8112725 8.5 0.5241108
## 1764 Small-Large unconnected 1.8112725 8.5 0.5241108
## 1765 Small-Large unconnected 1.8112725 8.5 0.5241108
## 1766 Small-Large unconnected 1.8112725 8.5 0.5241108
## 1767 Small-Large unconnected 1.8112725 8.5 0.5241108
## 1768 Small-Large unconnected 1.8112725 8.5 0.5241108
## 1769 Small-Large unconnected 1.8112725 8.5 0.5241108
## 1770 Small-Large unconnected 1.8112725 8.5 0.5241108
## 1771 Small-Large unconnected 1.8112725 8.5 0.5241108
## 1772 Small-Large unconnected 1.8112725 8.5 0.5241108
## 1773 Small-Large unconnected 1.8112725 8.5 0.5241108
## 1774 Small-Large unconnected 1.8112725 8.5 0.5241108
## 1775 Small-Large unconnected 1.8112725 8.5 0.5241108
## 1776 Small-Large unconnected 1.8112725 8.5 0.5241108
## 1777 Small-Large unconnected 1.5778693 8.0 0.7006088
## 1778 Small-Large unconnected 1.5778693 8.0 0.7006088
## 1779 Small-Large unconnected 1.5778693 8.0 0.7006088
## 1780 Small-Large unconnected 1.5778693 8.0 0.7006088
## 1781 Small-Large unconnected 1.5778693 8.0 0.7006088
## 1782 Small-Large unconnected 1.5778693 8.0 0.7006088
## 1783 Small-Large unconnected 1.5778693 8.0 0.7006088
## 1784 Small-Large unconnected 1.5778693 8.0 0.7006088
## 1785 Small-Large unconnected 1.5778693 8.0 0.7006088
## 1786 Small-Large unconnected 1.5778693 8.0 0.7006088
## 1787 Small-Large unconnected 1.5778693 8.0 0.7006088
## 1788 Small-Large unconnected 1.5778693 8.0 0.7006088
## 1789 Small-Large unconnected 1.5778693 8.0 0.7006088
## 1790 Small-Large unconnected 1.5778693 8.0 0.7006088
## 1791 Small-Large unconnected 1.5778693 8.0 0.7006088
## 1792 Small-Large unconnected 1.5778693 8.0 0.7006088
## 1793 Small-Large unconnected 1.5778693 8.0 0.7006088
## 1794 Small-Large unconnected 1.5778693 8.0 0.7006088
## 1795 Small-Large unconnected 1.5778693 8.0 0.7006088
## 1796 Small-Large unconnected 1.5778693 8.0 0.7006088
## 1797 Small-Large unconnected 1.5778693 8.0 0.7006088
## 1798 Small-Large unconnected 1.5778693 8.0 0.7006088
## 1799 Small-Large unconnected 1.5778693 8.0 0.7006088
## 1800 Small-Large unconnected 1.5778693 8.0 0.7006088
## 1801 Small-Large unconnected 1.7398154 7.0 0.4756098
## 1802 Small-Large unconnected 1.7398154 7.0 0.4756098
## 1803 Small-Large unconnected 1.7398154 7.0 0.4756098
## 1804 Small-Large unconnected 1.7398154 7.0 0.4756098
## 1805 Small-Large unconnected 1.7398154 7.0 0.4756098
## 1806 Small-Large unconnected 1.7398154 7.0 0.4756098
## 1807 Small-Large unconnected 1.7398154 7.0 0.4756098
## 1808 Small-Large unconnected 1.7398154 7.0 0.4756098
## 1809 Small-Large unconnected 1.7398154 7.0 0.4756098
## 1810 Small-Large unconnected 1.7398154 7.0 0.4756098
## 1811 Small-Large unconnected 1.7398154 7.0 0.4756098
## 1812 Small-Large unconnected 1.7398154 7.0 0.4756098
## 1813 Small-Large unconnected 1.7398154 7.0 0.4756098
## 1814 Small-Large unconnected 1.7398154 7.0 0.4756098
## 1815 Small-Large unconnected 1.7398154 7.0 0.4756098
## 1816 Small-Large unconnected 1.7398154 7.0 0.4756098
## 1817 Small-Large unconnected 1.7398154 7.0 0.4756098
## 1818 Small-Large unconnected 1.7398154 7.0 0.4756098
## 1819 Small-Large unconnected 1.7398154 7.0 0.4756098
## 1820 Small-Large unconnected 1.7398154 7.0 0.4756098
## 1821 Small-Large unconnected 1.7398154 7.0 0.4756098
## 1822 Small-Large unconnected 1.7398154 7.0 0.4756098
## 1823 Small-Large unconnected 1.7398154 7.0 0.4756098
## 1824 Small-Large unconnected 1.7398154 7.0 0.4756098
## 1825 Small-Large unconnected 1.2519825 5.5 0.7460988
## 1826 Small-Large unconnected 1.2519825 5.5 0.7460988
## 1827 Small-Large unconnected 1.2519825 5.5 0.7460988
## 1828 Small-Large unconnected 1.2519825 5.5 0.7460988
## 1829 Small-Large unconnected 1.2519825 5.5 0.7460988
## 1830 Small-Large unconnected 1.2519825 5.5 0.7460988
## 1831 Small-Large unconnected 1.2519825 5.5 0.7460988
## 1832 Small-Large unconnected 1.2519825 5.5 0.7460988
## 1833 Small-Large unconnected 1.2519825 5.5 0.7460988
## 1834 Small-Large unconnected 1.2519825 5.5 0.7460988
## 1835 Small-Large unconnected 1.2519825 5.5 0.7460988
## 1836 Small-Large unconnected 1.2519825 5.5 0.7460988
## 1837 Small-Large unconnected 1.2519825 5.5 0.7460988
## 1838 Small-Large unconnected 1.2519825 5.5 0.7460988
## 1839 Small-Large unconnected 1.2519825 5.5 0.7460988
## 1840 Small-Large unconnected 1.2519825 5.5 0.7460988
## 1841 Small-Large unconnected 1.2519825 5.5 0.7460988
## 1842 Small-Large unconnected 1.2519825 5.5 0.7460988
## 1843 Small-Large unconnected 1.2519825 5.5 0.7460988
## 1844 Small-Large unconnected 1.2519825 5.5 0.7460988
## 1845 Small-Large unconnected 1.2519825 5.5 0.7460988
## 1846 Small-Large unconnected 1.2519825 5.5 0.7460988
## 1847 Small-Large unconnected 1.2519825 5.5 0.7460988
## 1848 Small-Large unconnected 1.2519825 5.5 0.7460988
## 1849 Small-Large unconnected 1.4667712 5.5 0.9079875
## 1850 Small-Large unconnected 1.4667712 5.5 0.9079875
## 1851 Small-Large unconnected 1.4667712 5.5 0.9079875
## 1852 Small-Large unconnected 1.4667712 5.5 0.9079875
## 1853 Small-Large unconnected 1.4667712 5.5 0.9079875
## 1854 Small-Large unconnected 1.4667712 5.5 0.9079875
## 1855 Small-Large unconnected 1.4667712 5.5 0.9079875
## 1856 Small-Large unconnected 1.4667712 5.5 0.9079875
## 1857 Small-Large unconnected 1.4667712 5.5 0.9079875
## 1858 Small-Large unconnected 1.4667712 5.5 0.9079875
## 1859 Small-Large unconnected 1.4667712 5.5 0.9079875
## 1860 Small-Large unconnected 1.4667712 5.5 0.9079875
## 1861 Small-Large unconnected 1.4667712 5.5 0.9079875
## 1862 Small-Large unconnected 1.4667712 5.5 0.9079875
## 1863 Small-Large unconnected 1.4667712 5.5 0.9079875
## 1864 Small-Large unconnected 1.4667712 5.5 0.9079875
## 1865 Small-Large unconnected 1.4667712 5.5 0.9079875
## 1866 Small-Large unconnected 1.4667712 5.5 0.9079875
## 1867 Small-Large unconnected 1.4667712 5.5 0.9079875
## 1868 Small-Large unconnected 1.4667712 5.5 0.9079875
## 1869 Small-Large unconnected 1.4667712 5.5 0.9079875
## 1870 Small-Large unconnected 1.4667712 5.5 0.9079875
## 1871 Small-Large unconnected 1.4667712 5.5 0.9079875
## 1872 Small-Large unconnected 1.4667712 5.5 0.9079875
## 1873 Small-Large unconnected 0.8928972 4.5 0.9027828
## 1874 Small-Large unconnected 0.8928972 4.5 0.9027828
## 1875 Small-Large unconnected 0.8928972 4.5 0.9027828
## 1876 Small-Large unconnected 0.8928972 4.5 0.9027828
## 1877 Small-Large unconnected 0.8928972 4.5 0.9027828
## 1878 Small-Large unconnected 0.8928972 4.5 0.9027828
## 1879 Small-Large unconnected 0.8928972 4.5 0.9027828
## 1880 Small-Large unconnected 0.8928972 4.5 0.9027828
## 1881 Small-Large unconnected 0.8928972 4.5 0.9027828
## 1882 Small-Large unconnected 0.8928972 4.5 0.9027828
## 1883 Small-Large unconnected 0.8928972 4.5 0.9027828
## 1884 Small-Large unconnected 0.8928972 4.5 0.9027828
## 1885 Small-Large unconnected 0.8928972 4.5 0.9027828
## 1886 Small-Large unconnected 0.8928972 4.5 0.9027828
## 1887 Small-Large unconnected 0.8928972 4.5 0.9027828
## 1888 Small-Large unconnected 0.8928972 4.5 0.9027828
## 1889 Small-Large unconnected 0.8928972 4.5 0.9027828
## 1890 Small-Large unconnected 0.8928972 4.5 0.9027828
## 1891 Small-Large unconnected 0.8928972 4.5 0.9027828
## 1892 Small-Large unconnected 0.8928972 4.5 0.9027828
## 1893 Small-Large unconnected 0.8928972 4.5 0.9027828
## 1894 Small-Large unconnected 0.8928972 4.5 0.9027828
## 1895 Small-Large unconnected 0.8928972 4.5 0.9027828
## 1896 Small-Large unconnected 0.8928972 4.5 0.9027828
## 1897 Small-Large unconnected 0.6549539 4.5 0.9497693
## 1898 Small-Large unconnected 0.6549539 4.5 0.9497693
## 1899 Small-Large unconnected 0.6549539 4.5 0.9497693
## 1900 Small-Large unconnected 0.6549539 4.5 0.9497693
## 1901 Small-Large unconnected 0.6549539 4.5 0.9497693
## 1902 Small-Large unconnected 0.6549539 4.5 0.9497693
## 1903 Small-Large unconnected 0.6549539 4.5 0.9497693
## 1904 Small-Large unconnected 0.6549539 4.5 0.9497693
## 1905 Small-Large unconnected 0.6549539 4.5 0.9497693
## 1906 Small-Large unconnected 0.6549539 4.5 0.9497693
## 1907 Small-Large unconnected 0.6549539 4.5 0.9497693
## 1908 Small-Large unconnected 0.6549539 4.5 0.9497693
## 1909 Small-Large unconnected 0.6549539 4.5 0.9497693
## 1910 Small-Large unconnected 0.6549539 4.5 0.9497693
## 1911 Small-Large unconnected 0.6549539 4.5 0.9497693
## 1912 Small-Large unconnected 0.6549539 4.5 0.9497693
## 1913 Small-Large unconnected 0.6549539 4.5 0.9497693
## 1914 Small-Large unconnected 0.6549539 4.5 0.9497693
## 1915 Small-Large unconnected 0.6549539 4.5 0.9497693
## 1916 Small-Large unconnected 0.6549539 4.5 0.9497693
## 1917 Small-Large unconnected 0.6549539 4.5 0.9497693
## 1918 Small-Large unconnected 0.6549539 4.5 0.9497693
## 1919 Small-Large unconnected 0.6549539 4.5 0.9497693
## 1920 Small-Large unconnected 0.6549539 4.5 0.9497693
## 1921 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1922 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1923 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1924 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1925 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1926 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1927 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1928 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1929 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1930 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1931 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1932 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1933 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1934 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1935 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1936 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1937 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1938 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1939 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1940 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1941 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1942 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1943 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1944 Small-Large unconnected 2.0784670 11.0 0.0000000
## 1945 Small-Large unconnected 1.4587022 7.0 0.4647482
## 1946 Small-Large unconnected 1.4587022 7.0 0.4647482
## 1947 Small-Large unconnected 1.4587022 7.0 0.4647482
## 1948 Small-Large unconnected 1.4587022 7.0 0.4647482
## 1949 Small-Large unconnected 1.4587022 7.0 0.4647482
## 1950 Small-Large unconnected 1.4587022 7.0 0.4647482
## 1951 Small-Large unconnected 1.4587022 7.0 0.4647482
## 1952 Small-Large unconnected 1.4587022 7.0 0.4647482
## 1953 Small-Large unconnected 1.4587022 7.0 0.4647482
## 1954 Small-Large unconnected 1.4587022 7.0 0.4647482
## 1955 Small-Large unconnected 1.4587022 7.0 0.4647482
## 1956 Small-Large unconnected 1.4587022 7.0 0.4647482
## 1957 Small-Large unconnected 1.4587022 7.0 0.4647482
## 1958 Small-Large unconnected 1.4587022 7.0 0.4647482
## 1959 Small-Large unconnected 1.4587022 7.0 0.4647482
## 1960 Small-Large unconnected 1.4587022 7.0 0.4647482
## 1961 Small-Large unconnected 1.4587022 7.0 0.4647482
## 1962 Small-Large unconnected 1.4587022 7.0 0.4647482
## 1963 Small-Large unconnected 1.4587022 7.0 0.4647482
## 1964 Small-Large unconnected 1.4587022 7.0 0.4647482
## 1965 Small-Large unconnected 1.4587022 7.0 0.4647482
## 1966 Small-Large unconnected 1.4587022 7.0 0.4647482
## 1967 Small-Large unconnected 1.4587022 7.0 0.4647482
## 1968 Small-Large unconnected 1.4587022 7.0 0.4647482
## 1969 Small-Large unconnected 1.4635307 7.0 0.5222681
## 1970 Small-Large unconnected 1.4635307 7.0 0.5222681
## 1971 Small-Large unconnected 1.4635307 7.0 0.5222681
## 1972 Small-Large unconnected 1.4635307 7.0 0.5222681
## 1973 Small-Large unconnected 1.4635307 7.0 0.5222681
## 1974 Small-Large unconnected 1.4635307 7.0 0.5222681
## 1975 Small-Large unconnected 1.4635307 7.0 0.5222681
## 1976 Small-Large unconnected 1.4635307 7.0 0.5222681
## 1977 Small-Large unconnected 1.4635307 7.0 0.5222681
## 1978 Small-Large unconnected 1.4635307 7.0 0.5222681
## 1979 Small-Large unconnected 1.4635307 7.0 0.5222681
## 1980 Small-Large unconnected 1.4635307 7.0 0.5222681
## 1981 Small-Large unconnected 1.4635307 7.0 0.5222681
## 1982 Small-Large unconnected 1.4635307 7.0 0.5222681
## 1983 Small-Large unconnected 1.4635307 7.0 0.5222681
## 1984 Small-Large unconnected 1.4635307 7.0 0.5222681
## 1985 Small-Large unconnected 1.4635307 7.0 0.5222681
## 1986 Small-Large unconnected 1.4635307 7.0 0.5222681
## 1987 Small-Large unconnected 1.4635307 7.0 0.5222681
## 1988 Small-Large unconnected 1.4635307 7.0 0.5222681
## 1989 Small-Large unconnected 1.4635307 7.0 0.5222681
## 1990 Small-Large unconnected 1.4635307 7.0 0.5222681
## 1991 Small-Large unconnected 1.4635307 7.0 0.5222681
## 1992 Small-Large unconnected 1.4635307 7.0 0.5222681
## 1993 Small-Large unconnected 1.4969088 6.0 0.6928848
## 1994 Small-Large unconnected 1.4969088 6.0 0.6928848
## 1995 Small-Large unconnected 1.4969088 6.0 0.6928848
## 1996 Small-Large unconnected 1.4969088 6.0 0.6928848
## 1997 Small-Large unconnected 1.4969088 6.0 0.6928848
## 1998 Small-Large unconnected 1.4969088 6.0 0.6928848
## 1999 Small-Large unconnected 1.4969088 6.0 0.6928848
## 2000 Small-Large unconnected 1.4969088 6.0 0.6928848
## 2001 Small-Large unconnected 1.4969088 6.0 0.6928848
## 2002 Small-Large unconnected 1.4969088 6.0 0.6928848
## 2003 Small-Large unconnected 1.4969088 6.0 0.6928848
## 2004 Small-Large unconnected 1.4969088 6.0 0.6928848
## 2005 Small-Large unconnected 1.4969088 6.0 0.6928848
## 2006 Small-Large unconnected 1.4969088 6.0 0.6928848
## 2007 Small-Large unconnected 1.4969088 6.0 0.6928848
## 2008 Small-Large unconnected 1.4969088 6.0 0.6928848
## 2009 Small-Large unconnected 1.4969088 6.0 0.6928848
## 2010 Small-Large unconnected 1.4969088 6.0 0.6928848
## 2011 Small-Large unconnected 1.4969088 6.0 0.6928848
## 2012 Small-Large unconnected 1.4969088 6.0 0.6928848
## 2013 Small-Large unconnected 1.4969088 6.0 0.6928848
## 2014 Small-Large unconnected 1.4969088 6.0 0.6928848
## 2015 Small-Large unconnected 1.4969088 6.0 0.6928848
## 2016 Small-Large unconnected 1.4969088 6.0 0.6928848
## 2017 Small-Large unconnected 1.4098276 6.0 0.6760997
## 2018 Small-Large unconnected 1.4098276 6.0 0.6760997
## 2019 Small-Large unconnected 1.4098276 6.0 0.6760997
## 2020 Small-Large unconnected 1.4098276 6.0 0.6760997
## 2021 Small-Large unconnected 1.4098276 6.0 0.6760997
## 2022 Small-Large unconnected 1.4098276 6.0 0.6760997
## 2023 Small-Large unconnected 1.4098276 6.0 0.6760997
## 2024 Small-Large unconnected 1.4098276 6.0 0.6760997
## 2025 Small-Large unconnected 1.4098276 6.0 0.6760997
## 2026 Small-Large unconnected 1.4098276 6.0 0.6760997
## 2027 Small-Large unconnected 1.4098276 6.0 0.6760997
## 2028 Small-Large unconnected 1.4098276 6.0 0.6760997
## 2029 Small-Large unconnected 1.4098276 6.0 0.6760997
## 2030 Small-Large unconnected 1.4098276 6.0 0.6760997
## 2031 Small-Large unconnected 1.4098276 6.0 0.6760997
## 2032 Small-Large unconnected 1.4098276 6.0 0.6760997
## 2033 Small-Large unconnected 1.4098276 6.0 0.6760997
## 2034 Small-Large unconnected 1.4098276 6.0 0.6760997
## 2035 Small-Large unconnected 1.4098276 6.0 0.6760997
## 2036 Small-Large unconnected 1.4098276 6.0 0.6760997
## 2037 Small-Large unconnected 1.4098276 6.0 0.6760997
## 2038 Small-Large unconnected 1.4098276 6.0 0.6760997
## 2039 Small-Large unconnected 1.4098276 6.0 0.6760997
## 2040 Small-Large unconnected 1.4098276 6.0 0.6760997
## 2041 Small-Large unconnected 0.8677885 4.0 0.8623853
## 2042 Small-Large unconnected 0.8677885 4.0 0.8623853
## 2043 Small-Large unconnected 0.8677885 4.0 0.8623853
## 2044 Small-Large unconnected 0.8677885 4.0 0.8623853
## 2045 Small-Large unconnected 0.8677885 4.0 0.8623853
## 2046 Small-Large unconnected 0.8677885 4.0 0.8623853
## 2047 Small-Large unconnected 0.8677885 4.0 0.8623853
## 2048 Small-Large unconnected 0.8677885 4.0 0.8623853
## 2049 Small-Large unconnected 0.8677885 4.0 0.8623853
## 2050 Small-Large unconnected 0.8677885 4.0 0.8623853
## 2051 Small-Large unconnected 0.8677885 4.0 0.8623853
## 2052 Small-Large unconnected 0.8677885 4.0 0.8623853
## 2053 Small-Large unconnected 0.8677885 4.0 0.8623853
## 2054 Small-Large unconnected 0.8677885 4.0 0.8623853
## 2055 Small-Large unconnected 0.8677885 4.0 0.8623853
## 2056 Small-Large unconnected 0.8677885 4.0 0.8623853
## 2057 Small-Large unconnected 0.8677885 4.0 0.8623853
## 2058 Small-Large unconnected 0.8677885 4.0 0.8623853
## 2059 Small-Large unconnected 0.8677885 4.0 0.8623853
## 2060 Small-Large unconnected 0.8677885 4.0 0.8623853
## 2061 Small-Large unconnected 0.8677885 4.0 0.8623853
## 2062 Small-Large unconnected 0.8677885 4.0 0.8623853
## 2063 Small-Large unconnected 0.8677885 4.0 0.8623853
## 2064 Small-Large unconnected 0.8677885 4.0 0.8623853
## 2065 Small-Large unconnected 1.0349319 5.0 0.8940736
## 2066 Small-Large unconnected 1.0349319 5.0 0.8940736
## 2067 Small-Large unconnected 1.0349319 5.0 0.8940736
## 2068 Small-Large unconnected 1.0349319 5.0 0.8940736
## 2069 Small-Large unconnected 1.0349319 5.0 0.8940736
## 2070 Small-Large unconnected 1.0349319 5.0 0.8940736
## 2071 Small-Large unconnected 1.0349319 5.0 0.8940736
## 2072 Small-Large unconnected 1.0349319 5.0 0.8940736
## 2073 Small-Large unconnected 1.0349319 5.0 0.8940736
## 2074 Small-Large unconnected 1.0349319 5.0 0.8940736
## 2075 Small-Large unconnected 1.0349319 5.0 0.8940736
## 2076 Small-Large unconnected 1.0349319 5.0 0.8940736
## 2077 Small-Large unconnected 1.0349319 5.0 0.8940736
## 2078 Small-Large unconnected 1.0349319 5.0 0.8940736
## 2079 Small-Large unconnected 1.0349319 5.0 0.8940736
## 2080 Small-Large unconnected 1.0349319 5.0 0.8940736
## 2081 Small-Large unconnected 1.0349319 5.0 0.8940736
## 2082 Small-Large unconnected 1.0349319 5.0 0.8940736
## 2083 Small-Large unconnected 1.0349319 5.0 0.8940736
## 2084 Small-Large unconnected 1.0349319 5.0 0.8940736
## 2085 Small-Large unconnected 1.0349319 5.0 0.8940736
## 2086 Small-Large unconnected 1.0349319 5.0 0.8940736
## 2087 Small-Large unconnected 1.0349319 5.0 0.8940736
## 2088 Small-Large unconnected 1.0349319 5.0 0.8940736
## 2089 Small-Large unconnected 0.8886913 5.5 0.8939828
## 2090 Small-Large unconnected 0.8886913 5.5 0.8939828
## 2091 Small-Large unconnected 0.8886913 5.5 0.8939828
## 2092 Small-Large unconnected 0.8886913 5.5 0.8939828
## 2093 Small-Large unconnected 0.8886913 5.5 0.8939828
## 2094 Small-Large unconnected 0.8886913 5.5 0.8939828
## 2095 Small-Large unconnected 0.8886913 5.5 0.8939828
## 2096 Small-Large unconnected 0.8886913 5.5 0.8939828
## 2097 Small-Large unconnected 0.8886913 5.5 0.8939828
## 2098 Small-Large unconnected 0.8886913 5.5 0.8939828
## 2099 Small-Large unconnected 0.8886913 5.5 0.8939828
## 2100 Small-Large unconnected 0.8886913 5.5 0.8939828
## 2101 Small-Large unconnected 0.8886913 5.5 0.8939828
## 2102 Small-Large unconnected 0.8886913 5.5 0.8939828
## 2103 Small-Large unconnected 0.8886913 5.5 0.8939828
## 2104 Small-Large unconnected 0.8886913 5.5 0.8939828
## 2105 Small-Large unconnected 0.8886913 5.5 0.8939828
## 2106 Small-Large unconnected 0.8886913 5.5 0.8939828
## 2107 Small-Large unconnected 0.8886913 5.5 0.8939828
## 2108 Small-Large unconnected 0.8886913 5.5 0.8939828
## 2109 Small-Large unconnected 0.8886913 5.5 0.8939828
## 2110 Small-Large unconnected 0.8886913 5.5 0.8939828
## 2111 Small-Large unconnected 0.8886913 5.5 0.8939828
## 2112 Small-Large unconnected 0.8886913 5.5 0.8939828
## 2113 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2114 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2115 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2116 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2117 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2118 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2119 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2120 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2121 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2122 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2123 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2124 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2125 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2126 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2127 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2128 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2129 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2130 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2131 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2132 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2133 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2134 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2135 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2136 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2137 Small-Large unconnected 1.6928054 7.5 0.5989357
## 2138 Small-Large unconnected 1.6928054 7.5 0.5989357
## 2139 Small-Large unconnected 1.6928054 7.5 0.5989357
## 2140 Small-Large unconnected 1.6928054 7.5 0.5989357
## 2141 Small-Large unconnected 1.6928054 7.5 0.5989357
## 2142 Small-Large unconnected 1.6928054 7.5 0.5989357
## 2143 Small-Large unconnected 1.6928054 7.5 0.5989357
## 2144 Small-Large unconnected 1.6928054 7.5 0.5989357
## 2145 Small-Large unconnected 1.6928054 7.5 0.5989357
## 2146 Small-Large unconnected 1.6928054 7.5 0.5989357
## 2147 Small-Large unconnected 1.6928054 7.5 0.5989357
## 2148 Small-Large unconnected 1.6928054 7.5 0.5989357
## 2149 Small-Large unconnected 1.6928054 7.5 0.5989357
## 2150 Small-Large unconnected 1.6928054 7.5 0.5989357
## 2151 Small-Large unconnected 1.6928054 7.5 0.5989357
## 2152 Small-Large unconnected 1.6928054 7.5 0.5989357
## 2153 Small-Large unconnected 1.6928054 7.5 0.5989357
## 2154 Small-Large unconnected 1.6928054 7.5 0.5989357
## 2155 Small-Large unconnected 1.6928054 7.5 0.5989357
## 2156 Small-Large unconnected 1.6928054 7.5 0.5989357
## 2157 Small-Large unconnected 1.6928054 7.5 0.5989357
## 2158 Small-Large unconnected 1.6928054 7.5 0.5989357
## 2159 Small-Large unconnected 1.6928054 7.5 0.5989357
## 2160 Small-Large unconnected 1.6928054 7.5 0.5989357
## 2161 Small-Large unconnected 1.3904874 5.5 0.2931267
## 2162 Small-Large unconnected 1.3904874 5.5 0.2931267
## 2163 Small-Large unconnected 1.3904874 5.5 0.2931267
## 2164 Small-Large unconnected 1.3904874 5.5 0.2931267
## 2165 Small-Large unconnected 1.3904874 5.5 0.2931267
## 2166 Small-Large unconnected 1.3904874 5.5 0.2931267
## 2167 Small-Large unconnected 1.3904874 5.5 0.2931267
## 2168 Small-Large unconnected 1.3904874 5.5 0.2931267
## 2169 Small-Large unconnected 1.3904874 5.5 0.2931267
## 2170 Small-Large unconnected 1.3904874 5.5 0.2931267
## 2171 Small-Large unconnected 1.3904874 5.5 0.2931267
## 2172 Small-Large unconnected 1.3904874 5.5 0.2931267
## 2173 Small-Large unconnected 1.3904874 5.5 0.2931267
## 2174 Small-Large unconnected 1.3904874 5.5 0.2931267
## 2175 Small-Large unconnected 1.3904874 5.5 0.2931267
## 2176 Small-Large unconnected 1.3904874 5.5 0.2931267
## 2177 Small-Large unconnected 1.3904874 5.5 0.2931267
## 2178 Small-Large unconnected 1.3904874 5.5 0.2931267
## 2179 Small-Large unconnected 1.3904874 5.5 0.2931267
## 2180 Small-Large unconnected 1.3904874 5.5 0.2931267
## 2181 Small-Large unconnected 1.3904874 5.5 0.2931267
## 2182 Small-Large unconnected 1.3904874 5.5 0.2931267
## 2183 Small-Large unconnected 1.3904874 5.5 0.2931267
## 2184 Small-Large unconnected 1.3904874 5.5 0.2931267
## 2185 Small-Large unconnected 1.4161738 6.0 0.5734298
## 2186 Small-Large unconnected 1.4161738 6.0 0.5734298
## 2187 Small-Large unconnected 1.4161738 6.0 0.5734298
## 2188 Small-Large unconnected 1.4161738 6.0 0.5734298
## 2189 Small-Large unconnected 1.4161738 6.0 0.5734298
## 2190 Small-Large unconnected 1.4161738 6.0 0.5734298
## 2191 Small-Large unconnected 1.4161738 6.0 0.5734298
## 2192 Small-Large unconnected 1.4161738 6.0 0.5734298
## 2193 Small-Large unconnected 1.4161738 6.0 0.5734298
## 2194 Small-Large unconnected 1.4161738 6.0 0.5734298
## 2195 Small-Large unconnected 1.4161738 6.0 0.5734298
## 2196 Small-Large unconnected 1.4161738 6.0 0.5734298
## 2197 Small-Large unconnected 1.4161738 6.0 0.5734298
## 2198 Small-Large unconnected 1.4161738 6.0 0.5734298
## 2199 Small-Large unconnected 1.4161738 6.0 0.5734298
## 2200 Small-Large unconnected 1.4161738 6.0 0.5734298
## 2201 Small-Large unconnected 1.4161738 6.0 0.5734298
## 2202 Small-Large unconnected 1.4161738 6.0 0.5734298
## 2203 Small-Large unconnected 1.4161738 6.0 0.5734298
## 2204 Small-Large unconnected 1.4161738 6.0 0.5734298
## 2205 Small-Large unconnected 1.4161738 6.0 0.5734298
## 2206 Small-Large unconnected 1.4161738 6.0 0.5734298
## 2207 Small-Large unconnected 1.4161738 6.0 0.5734298
## 2208 Small-Large unconnected 1.4161738 6.0 0.5734298
## 2209 Small-Large unconnected 1.1830432 4.5 0.5461783
## 2210 Small-Large unconnected 1.1830432 4.5 0.5461783
## 2211 Small-Large unconnected 1.1830432 4.5 0.5461783
## 2212 Small-Large unconnected 1.1830432 4.5 0.5461783
## 2213 Small-Large unconnected 1.1830432 4.5 0.5461783
## 2214 Small-Large unconnected 1.1830432 4.5 0.5461783
## 2215 Small-Large unconnected 1.1830432 4.5 0.5461783
## 2216 Small-Large unconnected 1.1830432 4.5 0.5461783
## 2217 Small-Large unconnected 1.1830432 4.5 0.5461783
## 2218 Small-Large unconnected 1.1830432 4.5 0.5461783
## 2219 Small-Large unconnected 1.1830432 4.5 0.5461783
## 2220 Small-Large unconnected 1.1830432 4.5 0.5461783
## 2221 Small-Large unconnected 1.1830432 4.5 0.5461783
## 2222 Small-Large unconnected 1.1830432 4.5 0.5461783
## 2223 Small-Large unconnected 1.1830432 4.5 0.5461783
## 2224 Small-Large unconnected 1.1830432 4.5 0.5461783
## 2225 Small-Large unconnected 1.1830432 4.5 0.5461783
## 2226 Small-Large unconnected 1.1830432 4.5 0.5461783
## 2227 Small-Large unconnected 1.1830432 4.5 0.5461783
## 2228 Small-Large unconnected 1.1830432 4.5 0.5461783
## 2229 Small-Large unconnected 1.1830432 4.5 0.5461783
## 2230 Small-Large unconnected 1.1830432 4.5 0.5461783
## 2231 Small-Large unconnected 1.1830432 4.5 0.5461783
## 2232 Small-Large unconnected 1.1830432 4.5 0.5461783
## 2233 Small-Large unconnected 1.0779045 5.0 0.8424721
## 2234 Small-Large unconnected 1.0779045 5.0 0.8424721
## 2235 Small-Large unconnected 1.0779045 5.0 0.8424721
## 2236 Small-Large unconnected 1.0779045 5.0 0.8424721
## 2237 Small-Large unconnected 1.0779045 5.0 0.8424721
## 2238 Small-Large unconnected 1.0779045 5.0 0.8424721
## 2239 Small-Large unconnected 1.0779045 5.0 0.8424721
## 2240 Small-Large unconnected 1.0779045 5.0 0.8424721
## 2241 Small-Large unconnected 1.0779045 5.0 0.8424721
## 2242 Small-Large unconnected 1.0779045 5.0 0.8424721
## 2243 Small-Large unconnected 1.0779045 5.0 0.8424721
## 2244 Small-Large unconnected 1.0779045 5.0 0.8424721
## 2245 Small-Large unconnected 1.0779045 5.0 0.8424721
## 2246 Small-Large unconnected 1.0779045 5.0 0.8424721
## 2247 Small-Large unconnected 1.0779045 5.0 0.8424721
## 2248 Small-Large unconnected 1.0779045 5.0 0.8424721
## 2249 Small-Large unconnected 1.0779045 5.0 0.8424721
## 2250 Small-Large unconnected 1.0779045 5.0 0.8424721
## 2251 Small-Large unconnected 1.0779045 5.0 0.8424721
## 2252 Small-Large unconnected 1.0779045 5.0 0.8424721
## 2253 Small-Large unconnected 1.0779045 5.0 0.8424721
## 2254 Small-Large unconnected 1.0779045 5.0 0.8424721
## 2255 Small-Large unconnected 1.0779045 5.0 0.8424721
## 2256 Small-Large unconnected 1.0779045 5.0 0.8424721
## 2257 Small-Large unconnected 1.1343318 5.0 0.9128705
## 2258 Small-Large unconnected 1.1343318 5.0 0.9128705
## 2259 Small-Large unconnected 1.1343318 5.0 0.9128705
## 2260 Small-Large unconnected 1.1343318 5.0 0.9128705
## 2261 Small-Large unconnected 1.1343318 5.0 0.9128705
## 2262 Small-Large unconnected 1.1343318 5.0 0.9128705
## 2263 Small-Large unconnected 1.1343318 5.0 0.9128705
## 2264 Small-Large unconnected 1.1343318 5.0 0.9128705
## 2265 Small-Large unconnected 1.1343318 5.0 0.9128705
## 2266 Small-Large unconnected 1.1343318 5.0 0.9128705
## 2267 Small-Large unconnected 1.1343318 5.0 0.9128705
## 2268 Small-Large unconnected 1.1343318 5.0 0.9128705
## 2269 Small-Large unconnected 1.1343318 5.0 0.9128705
## 2270 Small-Large unconnected 1.1343318 5.0 0.9128705
## 2271 Small-Large unconnected 1.1343318 5.0 0.9128705
## 2272 Small-Large unconnected 1.1343318 5.0 0.9128705
## 2273 Small-Large unconnected 1.1343318 5.0 0.9128705
## 2274 Small-Large unconnected 1.1343318 5.0 0.9128705
## 2275 Small-Large unconnected 1.1343318 5.0 0.9128705
## 2276 Small-Large unconnected 1.1343318 5.0 0.9128705
## 2277 Small-Large unconnected 1.1343318 5.0 0.9128705
## 2278 Small-Large unconnected 1.1343318 5.0 0.9128705
## 2279 Small-Large unconnected 1.1343318 5.0 0.9128705
## 2280 Small-Large unconnected 1.1343318 5.0 0.9128705
## 2281 Small-Large unconnected 0.9541375 4.5 0.8634686
## 2282 Small-Large unconnected 0.9541375 4.5 0.8634686
## 2283 Small-Large unconnected 0.9541375 4.5 0.8634686
## 2284 Small-Large unconnected 0.9541375 4.5 0.8634686
## 2285 Small-Large unconnected 0.9541375 4.5 0.8634686
## 2286 Small-Large unconnected 0.9541375 4.5 0.8634686
## 2287 Small-Large unconnected 0.9541375 4.5 0.8634686
## 2288 Small-Large unconnected 0.9541375 4.5 0.8634686
## 2289 Small-Large unconnected 0.9541375 4.5 0.8634686
## 2290 Small-Large unconnected 0.9541375 4.5 0.8634686
## 2291 Small-Large unconnected 0.9541375 4.5 0.8634686
## 2292 Small-Large unconnected 0.9541375 4.5 0.8634686
## 2293 Small-Large unconnected 0.9541375 4.5 0.8634686
## 2294 Small-Large unconnected 0.9541375 4.5 0.8634686
## 2295 Small-Large unconnected 0.9541375 4.5 0.8634686
## 2296 Small-Large unconnected 0.9541375 4.5 0.8634686
## 2297 Small-Large unconnected 0.9541375 4.5 0.8634686
## 2298 Small-Large unconnected 0.9541375 4.5 0.8634686
## 2299 Small-Large unconnected 0.9541375 4.5 0.8634686
## 2300 Small-Large unconnected 0.9541375 4.5 0.8634686
## 2301 Small-Large unconnected 0.9541375 4.5 0.8634686
## 2302 Small-Large unconnected 0.9541375 4.5 0.8634686
## 2303 Small-Large unconnected 0.9541375 4.5 0.8634686
## 2304 Small-Large unconnected 0.9541375 4.5 0.8634686
## 2305 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2306 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2307 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2308 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2309 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2310 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2311 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2312 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2313 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2314 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2315 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2316 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2317 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2318 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2319 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2320 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2321 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2322 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2323 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2324 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2325 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2326 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2327 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2328 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2329 Small-Large unconnected 1.5937474 7.5 0.3858672
## 2330 Small-Large unconnected 1.5937474 7.5 0.3858672
## 2331 Small-Large unconnected 1.5937474 7.5 0.3858672
## 2332 Small-Large unconnected 1.5937474 7.5 0.3858672
## 2333 Small-Large unconnected 1.5937474 7.5 0.3858672
## 2334 Small-Large unconnected 1.5937474 7.5 0.3858672
## 2335 Small-Large unconnected 1.5937474 7.5 0.3858672
## 2336 Small-Large unconnected 1.5937474 7.5 0.3858672
## 2337 Small-Large unconnected 1.5937474 7.5 0.3858672
## 2338 Small-Large unconnected 1.5937474 7.5 0.3858672
## 2339 Small-Large unconnected 1.5937474 7.5 0.3858672
## 2340 Small-Large unconnected 1.5937474 7.5 0.3858672
## 2341 Small-Large unconnected 1.5937474 7.5 0.3858672
## 2342 Small-Large unconnected 1.5937474 7.5 0.3858672
## 2343 Small-Large unconnected 1.5937474 7.5 0.3858672
## 2344 Small-Large unconnected 1.5937474 7.5 0.3858672
## 2345 Small-Large unconnected 1.5937474 7.5 0.3858672
## 2346 Small-Large unconnected 1.5937474 7.5 0.3858672
## 2347 Small-Large unconnected 1.5937474 7.5 0.3858672
## 2348 Small-Large unconnected 1.5937474 7.5 0.3858672
## 2349 Small-Large unconnected 1.5937474 7.5 0.3858672
## 2350 Small-Large unconnected 1.5937474 7.5 0.3858672
## 2351 Small-Large unconnected 1.5937474 7.5 0.3858672
## 2352 Small-Large unconnected 1.5937474 7.5 0.3858672
## 2353 Small-Large unconnected 1.6035169 7.5 0.3980177
## 2354 Small-Large unconnected 1.6035169 7.5 0.3980177
## 2355 Small-Large unconnected 1.6035169 7.5 0.3980177
## 2356 Small-Large unconnected 1.6035169 7.5 0.3980177
## 2357 Small-Large unconnected 1.6035169 7.5 0.3980177
## 2358 Small-Large unconnected 1.6035169 7.5 0.3980177
## 2359 Small-Large unconnected 1.6035169 7.5 0.3980177
## 2360 Small-Large unconnected 1.6035169 7.5 0.3980177
## 2361 Small-Large unconnected 1.6035169 7.5 0.3980177
## 2362 Small-Large unconnected 1.6035169 7.5 0.3980177
## 2363 Small-Large unconnected 1.6035169 7.5 0.3980177
## 2364 Small-Large unconnected 1.6035169 7.5 0.3980177
## 2365 Small-Large unconnected 1.6035169 7.5 0.3980177
## 2366 Small-Large unconnected 1.6035169 7.5 0.3980177
## 2367 Small-Large unconnected 1.6035169 7.5 0.3980177
## 2368 Small-Large unconnected 1.6035169 7.5 0.3980177
## 2369 Small-Large unconnected 1.6035169 7.5 0.3980177
## 2370 Small-Large unconnected 1.6035169 7.5 0.3980177
## 2371 Small-Large unconnected 1.6035169 7.5 0.3980177
## 2372 Small-Large unconnected 1.6035169 7.5 0.3980177
## 2373 Small-Large unconnected 1.6035169 7.5 0.3980177
## 2374 Small-Large unconnected 1.6035169 7.5 0.3980177
## 2375 Small-Large unconnected 1.6035169 7.5 0.3980177
## 2376 Small-Large unconnected 1.6035169 7.5 0.3980177
## 2377 Small-Large unconnected 1.5172828 6.5 0.6578032
## 2378 Small-Large unconnected 1.5172828 6.5 0.6578032
## 2379 Small-Large unconnected 1.5172828 6.5 0.6578032
## 2380 Small-Large unconnected 1.5172828 6.5 0.6578032
## 2381 Small-Large unconnected 1.5172828 6.5 0.6578032
## 2382 Small-Large unconnected 1.5172828 6.5 0.6578032
## 2383 Small-Large unconnected 1.5172828 6.5 0.6578032
## 2384 Small-Large unconnected 1.5172828 6.5 0.6578032
## 2385 Small-Large unconnected 1.5172828 6.5 0.6578032
## 2386 Small-Large unconnected 1.5172828 6.5 0.6578032
## 2387 Small-Large unconnected 1.5172828 6.5 0.6578032
## 2388 Small-Large unconnected 1.5172828 6.5 0.6578032
## 2389 Small-Large unconnected 1.5172828 6.5 0.6578032
## 2390 Small-Large unconnected 1.5172828 6.5 0.6578032
## 2391 Small-Large unconnected 1.5172828 6.5 0.6578032
## 2392 Small-Large unconnected 1.5172828 6.5 0.6578032
## 2393 Small-Large unconnected 1.5172828 6.5 0.6578032
## 2394 Small-Large unconnected 1.5172828 6.5 0.6578032
## 2395 Small-Large unconnected 1.5172828 6.5 0.6578032
## 2396 Small-Large unconnected 1.5172828 6.5 0.6578032
## 2397 Small-Large unconnected 1.5172828 6.5 0.6578032
## 2398 Small-Large unconnected 1.5172828 6.5 0.6578032
## 2399 Small-Large unconnected 1.5172828 6.5 0.6578032
## 2400 Small-Large unconnected 1.5172828 6.5 0.6578032
## 2401 Small-Large unconnected 1.3203870 5.5 0.5871069
## 2402 Small-Large unconnected 1.3203870 5.5 0.5871069
## 2403 Small-Large unconnected 1.3203870 5.5 0.5871069
## 2404 Small-Large unconnected 1.3203870 5.5 0.5871069
## 2405 Small-Large unconnected 1.3203870 5.5 0.5871069
## 2406 Small-Large unconnected 1.3203870 5.5 0.5871069
## 2407 Small-Large unconnected 1.3203870 5.5 0.5871069
## 2408 Small-Large unconnected 1.3203870 5.5 0.5871069
## 2409 Small-Large unconnected 1.3203870 5.5 0.5871069
## 2410 Small-Large unconnected 1.3203870 5.5 0.5871069
## 2411 Small-Large unconnected 1.3203870 5.5 0.5871069
## 2412 Small-Large unconnected 1.3203870 5.5 0.5871069
## 2413 Small-Large unconnected 1.3203870 5.5 0.5871069
## 2414 Small-Large unconnected 1.3203870 5.5 0.5871069
## 2415 Small-Large unconnected 1.3203870 5.5 0.5871069
## 2416 Small-Large unconnected 1.3203870 5.5 0.5871069
## 2417 Small-Large unconnected 1.3203870 5.5 0.5871069
## 2418 Small-Large unconnected 1.3203870 5.5 0.5871069
## 2419 Small-Large unconnected 1.3203870 5.5 0.5871069
## 2420 Small-Large unconnected 1.3203870 5.5 0.5871069
## 2421 Small-Large unconnected 1.3203870 5.5 0.5871069
## 2422 Small-Large unconnected 1.3203870 5.5 0.5871069
## 2423 Small-Large unconnected 1.3203870 5.5 0.5871069
## 2424 Small-Large unconnected 1.3203870 5.5 0.5871069
## 2425 Small-Large unconnected 0.9457610 4.0 0.8813489
## 2426 Small-Large unconnected 0.9457610 4.0 0.8813489
## 2427 Small-Large unconnected 0.9457610 4.0 0.8813489
## 2428 Small-Large unconnected 0.9457610 4.0 0.8813489
## 2429 Small-Large unconnected 0.9457610 4.0 0.8813489
## 2430 Small-Large unconnected 0.9457610 4.0 0.8813489
## 2431 Small-Large unconnected 0.9457610 4.0 0.8813489
## 2432 Small-Large unconnected 0.9457610 4.0 0.8813489
## 2433 Small-Large unconnected 0.9457610 4.0 0.8813489
## 2434 Small-Large unconnected 0.9457610 4.0 0.8813489
## 2435 Small-Large unconnected 0.9457610 4.0 0.8813489
## 2436 Small-Large unconnected 0.9457610 4.0 0.8813489
## 2437 Small-Large unconnected 0.9457610 4.0 0.8813489
## 2438 Small-Large unconnected 0.9457610 4.0 0.8813489
## 2439 Small-Large unconnected 0.9457610 4.0 0.8813489
## 2440 Small-Large unconnected 0.9457610 4.0 0.8813489
## 2441 Small-Large unconnected 0.9457610 4.0 0.8813489
## 2442 Small-Large unconnected 0.9457610 4.0 0.8813489
## 2443 Small-Large unconnected 0.9457610 4.0 0.8813489
## 2444 Small-Large unconnected 0.9457610 4.0 0.8813489
## 2445 Small-Large unconnected 0.9457610 4.0 0.8813489
## 2446 Small-Large unconnected 0.9457610 4.0 0.8813489
## 2447 Small-Large unconnected 0.9457610 4.0 0.8813489
## 2448 Small-Large unconnected 0.9457610 4.0 0.8813489
## 2449 Small-Large unconnected 1.0476403 5.5 0.8832972
## 2450 Small-Large unconnected 1.0476403 5.5 0.8832972
## 2451 Small-Large unconnected 1.0476403 5.5 0.8832972
## 2452 Small-Large unconnected 1.0476403 5.5 0.8832972
## 2453 Small-Large unconnected 1.0476403 5.5 0.8832972
## 2454 Small-Large unconnected 1.0476403 5.5 0.8832972
## 2455 Small-Large unconnected 1.0476403 5.5 0.8832972
## 2456 Small-Large unconnected 1.0476403 5.5 0.8832972
## 2457 Small-Large unconnected 1.0476403 5.5 0.8832972
## 2458 Small-Large unconnected 1.0476403 5.5 0.8832972
## 2459 Small-Large unconnected 1.0476403 5.5 0.8832972
## 2460 Small-Large unconnected 1.0476403 5.5 0.8832972
## 2461 Small-Large unconnected 1.0476403 5.5 0.8832972
## 2462 Small-Large unconnected 1.0476403 5.5 0.8832972
## 2463 Small-Large unconnected 1.0476403 5.5 0.8832972
## 2464 Small-Large unconnected 1.0476403 5.5 0.8832972
## 2465 Small-Large unconnected 1.0476403 5.5 0.8832972
## 2466 Small-Large unconnected 1.0476403 5.5 0.8832972
## 2467 Small-Large unconnected 1.0476403 5.5 0.8832972
## 2468 Small-Large unconnected 1.0476403 5.5 0.8832972
## 2469 Small-Large unconnected 1.0476403 5.5 0.8832972
## 2470 Small-Large unconnected 1.0476403 5.5 0.8832972
## 2471 Small-Large unconnected 1.0476403 5.5 0.8832972
## 2472 Small-Large unconnected 1.0476403 5.5 0.8832972
## 2473 Small-Large unconnected 0.8264735 4.5 0.9161354
## 2474 Small-Large unconnected 0.8264735 4.5 0.9161354
## 2475 Small-Large unconnected 0.8264735 4.5 0.9161354
## 2476 Small-Large unconnected 0.8264735 4.5 0.9161354
## 2477 Small-Large unconnected 0.8264735 4.5 0.9161354
## 2478 Small-Large unconnected 0.8264735 4.5 0.9161354
## 2479 Small-Large unconnected 0.8264735 4.5 0.9161354
## 2480 Small-Large unconnected 0.8264735 4.5 0.9161354
## 2481 Small-Large unconnected 0.8264735 4.5 0.9161354
## 2482 Small-Large unconnected 0.8264735 4.5 0.9161354
## 2483 Small-Large unconnected 0.8264735 4.5 0.9161354
## 2484 Small-Large unconnected 0.8264735 4.5 0.9161354
## 2485 Small-Large unconnected 0.8264735 4.5 0.9161354
## 2486 Small-Large unconnected 0.8264735 4.5 0.9161354
## 2487 Small-Large unconnected 0.8264735 4.5 0.9161354
## 2488 Small-Large unconnected 0.8264735 4.5 0.9161354
## 2489 Small-Large unconnected 0.8264735 4.5 0.9161354
## 2490 Small-Large unconnected 0.8264735 4.5 0.9161354
## 2491 Small-Large unconnected 0.8264735 4.5 0.9161354
## 2492 Small-Large unconnected 0.8264735 4.5 0.9161354
## 2493 Small-Large unconnected 0.8264735 4.5 0.9161354
## 2494 Small-Large unconnected 0.8264735 4.5 0.9161354
## 2495 Small-Large unconnected 0.8264735 4.5 0.9161354
## 2496 Small-Large unconnected 0.8264735 4.5 0.9161354
## 2497 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2498 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2499 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2500 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2501 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2502 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2503 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2504 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2505 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2506 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2507 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2508 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2509 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2510 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2511 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2512 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2513 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2514 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2515 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2516 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2517 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2518 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2519 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2520 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2521 Small-Large unconnected 1.4908950 6.5 0.4258033
## 2522 Small-Large unconnected 1.4908950 6.5 0.4258033
## 2523 Small-Large unconnected 1.4908950 6.5 0.4258033
## 2524 Small-Large unconnected 1.4908950 6.5 0.4258033
## 2525 Small-Large unconnected 1.4908950 6.5 0.4258033
## 2526 Small-Large unconnected 1.4908950 6.5 0.4258033
## 2527 Small-Large unconnected 1.4908950 6.5 0.4258033
## 2528 Small-Large unconnected 1.4908950 6.5 0.4258033
## 2529 Small-Large unconnected 1.4908950 6.5 0.4258033
## 2530 Small-Large unconnected 1.4908950 6.5 0.4258033
## 2531 Small-Large unconnected 1.4908950 6.5 0.4258033
## 2532 Small-Large unconnected 1.4908950 6.5 0.4258033
## 2533 Small-Large unconnected 1.4908950 6.5 0.4258033
## 2534 Small-Large unconnected 1.4908950 6.5 0.4258033
## 2535 Small-Large unconnected 1.4908950 6.5 0.4258033
## 2536 Small-Large unconnected 1.4908950 6.5 0.4258033
## 2537 Small-Large unconnected 1.4908950 6.5 0.4258033
## 2538 Small-Large unconnected 1.4908950 6.5 0.4258033
## 2539 Small-Large unconnected 1.4908950 6.5 0.4258033
## 2540 Small-Large unconnected 1.4908950 6.5 0.4258033
## 2541 Small-Large unconnected 1.4908950 6.5 0.4258033
## 2542 Small-Large unconnected 1.4908950 6.5 0.4258033
## 2543 Small-Large unconnected 1.4908950 6.5 0.4258033
## 2544 Small-Large unconnected 1.4908950 6.5 0.4258033
## 2545 Small-Large unconnected 1.4369842 7.0 0.5152690
## 2546 Small-Large unconnected 1.4369842 7.0 0.5152690
## 2547 Small-Large unconnected 1.4369842 7.0 0.5152690
## 2548 Small-Large unconnected 1.4369842 7.0 0.5152690
## 2549 Small-Large unconnected 1.4369842 7.0 0.5152690
## 2550 Small-Large unconnected 1.4369842 7.0 0.5152690
## 2551 Small-Large unconnected 1.4369842 7.0 0.5152690
## 2552 Small-Large unconnected 1.4369842 7.0 0.5152690
## 2553 Small-Large unconnected 1.4369842 7.0 0.5152690
## 2554 Small-Large unconnected 1.4369842 7.0 0.5152690
## 2555 Small-Large unconnected 1.4369842 7.0 0.5152690
## 2556 Small-Large unconnected 1.4369842 7.0 0.5152690
## 2557 Small-Large unconnected 1.4369842 7.0 0.5152690
## 2558 Small-Large unconnected 1.4369842 7.0 0.5152690
## 2559 Small-Large unconnected 1.4369842 7.0 0.5152690
## 2560 Small-Large unconnected 1.4369842 7.0 0.5152690
## 2561 Small-Large unconnected 1.4369842 7.0 0.5152690
## 2562 Small-Large unconnected 1.4369842 7.0 0.5152690
## 2563 Small-Large unconnected 1.4369842 7.0 0.5152690
## 2564 Small-Large unconnected 1.4369842 7.0 0.5152690
## 2565 Small-Large unconnected 1.4369842 7.0 0.5152690
## 2566 Small-Large unconnected 1.4369842 7.0 0.5152690
## 2567 Small-Large unconnected 1.4369842 7.0 0.5152690
## 2568 Small-Large unconnected 1.4369842 7.0 0.5152690
## 2569 Small-Large unconnected 1.1590750 5.0 0.3094595
## 2570 Small-Large unconnected 1.1590750 5.0 0.3094595
## 2571 Small-Large unconnected 1.1590750 5.0 0.3094595
## 2572 Small-Large unconnected 1.1590750 5.0 0.3094595
## 2573 Small-Large unconnected 1.1590750 5.0 0.3094595
## 2574 Small-Large unconnected 1.1590750 5.0 0.3094595
## 2575 Small-Large unconnected 1.1590750 5.0 0.3094595
## 2576 Small-Large unconnected 1.1590750 5.0 0.3094595
## 2577 Small-Large unconnected 1.1590750 5.0 0.3094595
## 2578 Small-Large unconnected 1.1590750 5.0 0.3094595
## 2579 Small-Large unconnected 1.1590750 5.0 0.3094595
## 2580 Small-Large unconnected 1.1590750 5.0 0.3094595
## 2581 Small-Large unconnected 1.1590750 5.0 0.3094595
## 2582 Small-Large unconnected 1.1590750 5.0 0.3094595
## 2583 Small-Large unconnected 1.1590750 5.0 0.3094595
## 2584 Small-Large unconnected 1.1590750 5.0 0.3094595
## 2585 Small-Large unconnected 1.1590750 5.0 0.3094595
## 2586 Small-Large unconnected 1.1590750 5.0 0.3094595
## 2587 Small-Large unconnected 1.1590750 5.0 0.3094595
## 2588 Small-Large unconnected 1.1590750 5.0 0.3094595
## 2589 Small-Large unconnected 1.1590750 5.0 0.3094595
## 2590 Small-Large unconnected 1.1590750 5.0 0.3094595
## 2591 Small-Large unconnected 1.1590750 5.0 0.3094595
## 2592 Small-Large unconnected 1.1590750 5.0 0.3094595
## 2593 Small-Large unconnected 1.1787010 5.0 0.5881557
## 2594 Small-Large unconnected 1.1787010 5.0 0.5881557
## 2595 Small-Large unconnected 1.1787010 5.0 0.5881557
## 2596 Small-Large unconnected 1.1787010 5.0 0.5881557
## 2597 Small-Large unconnected 1.1787010 5.0 0.5881557
## 2598 Small-Large unconnected 1.1787010 5.0 0.5881557
## 2599 Small-Large unconnected 1.1787010 5.0 0.5881557
## 2600 Small-Large unconnected 1.1787010 5.0 0.5881557
## 2601 Small-Large unconnected 1.1787010 5.0 0.5881557
## 2602 Small-Large unconnected 1.1787010 5.0 0.5881557
## 2603 Small-Large unconnected 1.1787010 5.0 0.5881557
## 2604 Small-Large unconnected 1.1787010 5.0 0.5881557
## 2605 Small-Large unconnected 1.1787010 5.0 0.5881557
## 2606 Small-Large unconnected 1.1787010 5.0 0.5881557
## 2607 Small-Large unconnected 1.1787010 5.0 0.5881557
## 2608 Small-Large unconnected 1.1787010 5.0 0.5881557
## 2609 Small-Large unconnected 1.1787010 5.0 0.5881557
## 2610 Small-Large unconnected 1.1787010 5.0 0.5881557
## 2611 Small-Large unconnected 1.1787010 5.0 0.5881557
## 2612 Small-Large unconnected 1.1787010 5.0 0.5881557
## 2613 Small-Large unconnected 1.1787010 5.0 0.5881557
## 2614 Small-Large unconnected 1.1787010 5.0 0.5881557
## 2615 Small-Large unconnected 1.1787010 5.0 0.5881557
## 2616 Small-Large unconnected 1.1787010 5.0 0.5881557
## 2617 Small-Large unconnected 0.9245130 3.5 0.8128693
## 2618 Small-Large unconnected 0.9245130 3.5 0.8128693
## 2619 Small-Large unconnected 0.9245130 3.5 0.8128693
## 2620 Small-Large unconnected 0.9245130 3.5 0.8128693
## 2621 Small-Large unconnected 0.9245130 3.5 0.8128693
## 2622 Small-Large unconnected 0.9245130 3.5 0.8128693
## 2623 Small-Large unconnected 0.9245130 3.5 0.8128693
## 2624 Small-Large unconnected 0.9245130 3.5 0.8128693
## 2625 Small-Large unconnected 0.9245130 3.5 0.8128693
## 2626 Small-Large unconnected 0.9245130 3.5 0.8128693
## 2627 Small-Large unconnected 0.9245130 3.5 0.8128693
## 2628 Small-Large unconnected 0.9245130 3.5 0.8128693
## 2629 Small-Large unconnected 0.9245130 3.5 0.8128693
## 2630 Small-Large unconnected 0.9245130 3.5 0.8128693
## 2631 Small-Large unconnected 0.9245130 3.5 0.8128693
## 2632 Small-Large unconnected 0.9245130 3.5 0.8128693
## 2633 Small-Large unconnected 0.9245130 3.5 0.8128693
## 2634 Small-Large unconnected 0.9245130 3.5 0.8128693
## 2635 Small-Large unconnected 0.9245130 3.5 0.8128693
## 2636 Small-Large unconnected 0.9245130 3.5 0.8128693
## 2637 Small-Large unconnected 0.9245130 3.5 0.8128693
## 2638 Small-Large unconnected 0.9245130 3.5 0.8128693
## 2639 Small-Large unconnected 0.9245130 3.5 0.8128693
## 2640 Small-Large unconnected 0.9245130 3.5 0.8128693
## 2641 Small-Large unconnected 1.2497340 4.5 0.8109840
## 2642 Small-Large unconnected 1.2497340 4.5 0.8109840
## 2643 Small-Large unconnected 1.2497340 4.5 0.8109840
## 2644 Small-Large unconnected 1.2497340 4.5 0.8109840
## 2645 Small-Large unconnected 1.2497340 4.5 0.8109840
## 2646 Small-Large unconnected 1.2497340 4.5 0.8109840
## 2647 Small-Large unconnected 1.2497340 4.5 0.8109840
## 2648 Small-Large unconnected 1.2497340 4.5 0.8109840
## 2649 Small-Large unconnected 1.2497340 4.5 0.8109840
## 2650 Small-Large unconnected 1.2497340 4.5 0.8109840
## 2651 Small-Large unconnected 1.2497340 4.5 0.8109840
## 2652 Small-Large unconnected 1.2497340 4.5 0.8109840
## 2653 Small-Large unconnected 1.2497340 4.5 0.8109840
## 2654 Small-Large unconnected 1.2497340 4.5 0.8109840
## 2655 Small-Large unconnected 1.2497340 4.5 0.8109840
## 2656 Small-Large unconnected 1.2497340 4.5 0.8109840
## 2657 Small-Large unconnected 1.2497340 4.5 0.8109840
## 2658 Small-Large unconnected 1.2497340 4.5 0.8109840
## 2659 Small-Large unconnected 1.2497340 4.5 0.8109840
## 2660 Small-Large unconnected 1.2497340 4.5 0.8109840
## 2661 Small-Large unconnected 1.2497340 4.5 0.8109840
## 2662 Small-Large unconnected 1.2497340 4.5 0.8109840
## 2663 Small-Large unconnected 1.2497340 4.5 0.8109840
## 2664 Small-Large unconnected 1.2497340 4.5 0.8109840
## 2665 Small-Large unconnected 0.8774006 3.5 0.7224848
## 2666 Small-Large unconnected 0.8774006 3.5 0.7224848
## 2667 Small-Large unconnected 0.8774006 3.5 0.7224848
## 2668 Small-Large unconnected 0.8774006 3.5 0.7224848
## 2669 Small-Large unconnected 0.8774006 3.5 0.7224848
## 2670 Small-Large unconnected 0.8774006 3.5 0.7224848
## 2671 Small-Large unconnected 0.8774006 3.5 0.7224848
## 2672 Small-Large unconnected 0.8774006 3.5 0.7224848
## 2673 Small-Large unconnected 0.8774006 3.5 0.7224848
## 2674 Small-Large unconnected 0.8774006 3.5 0.7224848
## 2675 Small-Large unconnected 0.8774006 3.5 0.7224848
## 2676 Small-Large unconnected 0.8774006 3.5 0.7224848
## 2677 Small-Large unconnected 0.8774006 3.5 0.7224848
## 2678 Small-Large unconnected 0.8774006 3.5 0.7224848
## 2679 Small-Large unconnected 0.8774006 3.5 0.7224848
## 2680 Small-Large unconnected 0.8774006 3.5 0.7224848
## 2681 Small-Large unconnected 0.8774006 3.5 0.7224848
## 2682 Small-Large unconnected 0.8774006 3.5 0.7224848
## 2683 Small-Large unconnected 0.8774006 3.5 0.7224848
## 2684 Small-Large unconnected 0.8774006 3.5 0.7224848
## 2685 Small-Large unconnected 0.8774006 3.5 0.7224848
## 2686 Small-Large unconnected 0.8774006 3.5 0.7224848
## 2687 Small-Large unconnected 0.8774006 3.5 0.7224848
## 2688 Small-Large unconnected 0.8774006 3.5 0.7224848
## 2689 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2690 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2691 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2692 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2693 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2694 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2695 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2696 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2697 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2698 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2699 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2700 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2701 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2702 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2703 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2704 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2705 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2706 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2707 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2708 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2709 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2710 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2711 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2712 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2713 Small-Large unconnected 1.7159561 7.5 0.6949506
## 2714 Small-Large unconnected 1.7159561 7.5 0.6949506
## 2715 Small-Large unconnected 1.7159561 7.5 0.6949506
## 2716 Small-Large unconnected 1.7159561 7.5 0.6949506
## 2717 Small-Large unconnected 1.7159561 7.5 0.6949506
## 2718 Small-Large unconnected 1.7159561 7.5 0.6949506
## 2719 Small-Large unconnected 1.7159561 7.5 0.6949506
## 2720 Small-Large unconnected 1.7159561 7.5 0.6949506
## 2721 Small-Large unconnected 1.7159561 7.5 0.6949506
## 2722 Small-Large unconnected 1.7159561 7.5 0.6949506
## 2723 Small-Large unconnected 1.7159561 7.5 0.6949506
## 2724 Small-Large unconnected 1.7159561 7.5 0.6949506
## 2725 Small-Large unconnected 1.7159561 7.5 0.6949506
## 2726 Small-Large unconnected 1.7159561 7.5 0.6949506
## 2727 Small-Large unconnected 1.7159561 7.5 0.6949506
## 2728 Small-Large unconnected 1.7159561 7.5 0.6949506
## 2729 Small-Large unconnected 1.7159561 7.5 0.6949506
## 2730 Small-Large unconnected 1.7159561 7.5 0.6949506
## 2731 Small-Large unconnected 1.7159561 7.5 0.6949506
## 2732 Small-Large unconnected 1.7159561 7.5 0.6949506
## 2733 Small-Large unconnected 1.7159561 7.5 0.6949506
## 2734 Small-Large unconnected 1.7159561 7.5 0.6949506
## 2735 Small-Large unconnected 1.7159561 7.5 0.6949506
## 2736 Small-Large unconnected 1.7159561 7.5 0.6949506
## 2737 Small-Large unconnected 1.5200182 6.5 0.4408897
## 2738 Small-Large unconnected 1.5200182 6.5 0.4408897
## 2739 Small-Large unconnected 1.5200182 6.5 0.4408897
## 2740 Small-Large unconnected 1.5200182 6.5 0.4408897
## 2741 Small-Large unconnected 1.5200182 6.5 0.4408897
## 2742 Small-Large unconnected 1.5200182 6.5 0.4408897
## 2743 Small-Large unconnected 1.5200182 6.5 0.4408897
## 2744 Small-Large unconnected 1.5200182 6.5 0.4408897
## 2745 Small-Large unconnected 1.5200182 6.5 0.4408897
## 2746 Small-Large unconnected 1.5200182 6.5 0.4408897
## 2747 Small-Large unconnected 1.5200182 6.5 0.4408897
## 2748 Small-Large unconnected 1.5200182 6.5 0.4408897
## 2749 Small-Large unconnected 1.5200182 6.5 0.4408897
## 2750 Small-Large unconnected 1.5200182 6.5 0.4408897
## 2751 Small-Large unconnected 1.5200182 6.5 0.4408897
## 2752 Small-Large unconnected 1.5200182 6.5 0.4408897
## 2753 Small-Large unconnected 1.5200182 6.5 0.4408897
## 2754 Small-Large unconnected 1.5200182 6.5 0.4408897
## 2755 Small-Large unconnected 1.5200182 6.5 0.4408897
## 2756 Small-Large unconnected 1.5200182 6.5 0.4408897
## 2757 Small-Large unconnected 1.5200182 6.5 0.4408897
## 2758 Small-Large unconnected 1.5200182 6.5 0.4408897
## 2759 Small-Large unconnected 1.5200182 6.5 0.4408897
## 2760 Small-Large unconnected 1.5200182 6.5 0.4408897
## 2761 Small-Large unconnected 1.4734648 6.0 0.5394322
## 2762 Small-Large unconnected 1.4734648 6.0 0.5394322
## 2763 Small-Large unconnected 1.4734648 6.0 0.5394322
## 2764 Small-Large unconnected 1.4734648 6.0 0.5394322
## 2765 Small-Large unconnected 1.4734648 6.0 0.5394322
## 2766 Small-Large unconnected 1.4734648 6.0 0.5394322
## 2767 Small-Large unconnected 1.4734648 6.0 0.5394322
## 2768 Small-Large unconnected 1.4734648 6.0 0.5394322
## 2769 Small-Large unconnected 1.4734648 6.0 0.5394322
## 2770 Small-Large unconnected 1.4734648 6.0 0.5394322
## 2771 Small-Large unconnected 1.4734648 6.0 0.5394322
## 2772 Small-Large unconnected 1.4734648 6.0 0.5394322
## 2773 Small-Large unconnected 1.4734648 6.0 0.5394322
## 2774 Small-Large unconnected 1.4734648 6.0 0.5394322
## 2775 Small-Large unconnected 1.4734648 6.0 0.5394322
## 2776 Small-Large unconnected 1.4734648 6.0 0.5394322
## 2777 Small-Large unconnected 1.4734648 6.0 0.5394322
## 2778 Small-Large unconnected 1.4734648 6.0 0.5394322
## 2779 Small-Large unconnected 1.4734648 6.0 0.5394322
## 2780 Small-Large unconnected 1.4734648 6.0 0.5394322
## 2781 Small-Large unconnected 1.4734648 6.0 0.5394322
## 2782 Small-Large unconnected 1.4734648 6.0 0.5394322
## 2783 Small-Large unconnected 1.4734648 6.0 0.5394322
## 2784 Small-Large unconnected 1.4734648 6.0 0.5394322
## 2785 Small-Large unconnected 1.2780964 6.0 0.5398773
## 2786 Small-Large unconnected 1.2780964 6.0 0.5398773
## 2787 Small-Large unconnected 1.2780964 6.0 0.5398773
## 2788 Small-Large unconnected 1.2780964 6.0 0.5398773
## 2789 Small-Large unconnected 1.2780964 6.0 0.5398773
## 2790 Small-Large unconnected 1.2780964 6.0 0.5398773
## 2791 Small-Large unconnected 1.2780964 6.0 0.5398773
## 2792 Small-Large unconnected 1.2780964 6.0 0.5398773
## 2793 Small-Large unconnected 1.2780964 6.0 0.5398773
## 2794 Small-Large unconnected 1.2780964 6.0 0.5398773
## 2795 Small-Large unconnected 1.2780964 6.0 0.5398773
## 2796 Small-Large unconnected 1.2780964 6.0 0.5398773
## 2797 Small-Large unconnected 1.2780964 6.0 0.5398773
## 2798 Small-Large unconnected 1.2780964 6.0 0.5398773
## 2799 Small-Large unconnected 1.2780964 6.0 0.5398773
## 2800 Small-Large unconnected 1.2780964 6.0 0.5398773
## 2801 Small-Large unconnected 1.2780964 6.0 0.5398773
## 2802 Small-Large unconnected 1.2780964 6.0 0.5398773
## 2803 Small-Large unconnected 1.2780964 6.0 0.5398773
## 2804 Small-Large unconnected 1.2780964 6.0 0.5398773
## 2805 Small-Large unconnected 1.2780964 6.0 0.5398773
## 2806 Small-Large unconnected 1.2780964 6.0 0.5398773
## 2807 Small-Large unconnected 1.2780964 6.0 0.5398773
## 2808 Small-Large unconnected 1.2780964 6.0 0.5398773
## 2809 Small-Large unconnected 1.1438811 5.0 0.8833879
## 2810 Small-Large unconnected 1.1438811 5.0 0.8833879
## 2811 Small-Large unconnected 1.1438811 5.0 0.8833879
## 2812 Small-Large unconnected 1.1438811 5.0 0.8833879
## 2813 Small-Large unconnected 1.1438811 5.0 0.8833879
## 2814 Small-Large unconnected 1.1438811 5.0 0.8833879
## 2815 Small-Large unconnected 1.1438811 5.0 0.8833879
## 2816 Small-Large unconnected 1.1438811 5.0 0.8833879
## 2817 Small-Large unconnected 1.1438811 5.0 0.8833879
## 2818 Small-Large unconnected 1.1438811 5.0 0.8833879
## 2819 Small-Large unconnected 1.1438811 5.0 0.8833879
## 2820 Small-Large unconnected 1.1438811 5.0 0.8833879
## 2821 Small-Large unconnected 1.1438811 5.0 0.8833879
## 2822 Small-Large unconnected 1.1438811 5.0 0.8833879
## 2823 Small-Large unconnected 1.1438811 5.0 0.8833879
## 2824 Small-Large unconnected 1.1438811 5.0 0.8833879
## 2825 Small-Large unconnected 1.1438811 5.0 0.8833879
## 2826 Small-Large unconnected 1.1438811 5.0 0.8833879
## 2827 Small-Large unconnected 1.1438811 5.0 0.8833879
## 2828 Small-Large unconnected 1.1438811 5.0 0.8833879
## 2829 Small-Large unconnected 1.1438811 5.0 0.8833879
## 2830 Small-Large unconnected 1.1438811 5.0 0.8833879
## 2831 Small-Large unconnected 1.1438811 5.0 0.8833879
## 2832 Small-Large unconnected 1.1438811 5.0 0.8833879
## 2833 Small-Large unconnected 1.3698145 5.5 0.9027828
## 2834 Small-Large unconnected 1.3698145 5.5 0.9027828
## 2835 Small-Large unconnected 1.3698145 5.5 0.9027828
## 2836 Small-Large unconnected 1.3698145 5.5 0.9027828
## 2837 Small-Large unconnected 1.3698145 5.5 0.9027828
## 2838 Small-Large unconnected 1.3698145 5.5 0.9027828
## 2839 Small-Large unconnected 1.3698145 5.5 0.9027828
## 2840 Small-Large unconnected 1.3698145 5.5 0.9027828
## 2841 Small-Large unconnected 1.3698145 5.5 0.9027828
## 2842 Small-Large unconnected 1.3698145 5.5 0.9027828
## 2843 Small-Large unconnected 1.3698145 5.5 0.9027828
## 2844 Small-Large unconnected 1.3698145 5.5 0.9027828
## 2845 Small-Large unconnected 1.3698145 5.5 0.9027828
## 2846 Small-Large unconnected 1.3698145 5.5 0.9027828
## 2847 Small-Large unconnected 1.3698145 5.5 0.9027828
## 2848 Small-Large unconnected 1.3698145 5.5 0.9027828
## 2849 Small-Large unconnected 1.3698145 5.5 0.9027828
## 2850 Small-Large unconnected 1.3698145 5.5 0.9027828
## 2851 Small-Large unconnected 1.3698145 5.5 0.9027828
## 2852 Small-Large unconnected 1.3698145 5.5 0.9027828
## 2853 Small-Large unconnected 1.3698145 5.5 0.9027828
## 2854 Small-Large unconnected 1.3698145 5.5 0.9027828
## 2855 Small-Large unconnected 1.3698145 5.5 0.9027828
## 2856 Small-Large unconnected 1.3698145 5.5 0.9027828
## 2857 Small-Large unconnected 0.8863028 5.0 0.9009702
## 2858 Small-Large unconnected 0.8863028 5.0 0.9009702
## 2859 Small-Large unconnected 0.8863028 5.0 0.9009702
## 2860 Small-Large unconnected 0.8863028 5.0 0.9009702
## 2861 Small-Large unconnected 0.8863028 5.0 0.9009702
## 2862 Small-Large unconnected 0.8863028 5.0 0.9009702
## 2863 Small-Large unconnected 0.8863028 5.0 0.9009702
## 2864 Small-Large unconnected 0.8863028 5.0 0.9009702
## 2865 Small-Large unconnected 0.8863028 5.0 0.9009702
## 2866 Small-Large unconnected 0.8863028 5.0 0.9009702
## 2867 Small-Large unconnected 0.8863028 5.0 0.9009702
## 2868 Small-Large unconnected 0.8863028 5.0 0.9009702
## 2869 Small-Large unconnected 0.8863028 5.0 0.9009702
## 2870 Small-Large unconnected 0.8863028 5.0 0.9009702
## 2871 Small-Large unconnected 0.8863028 5.0 0.9009702
## 2872 Small-Large unconnected 0.8863028 5.0 0.9009702
## 2873 Small-Large unconnected 0.8863028 5.0 0.9009702
## 2874 Small-Large unconnected 0.8863028 5.0 0.9009702
## 2875 Small-Large unconnected 0.8863028 5.0 0.9009702
## 2876 Small-Large unconnected 0.8863028 5.0 0.9009702
## 2877 Small-Large unconnected 0.8863028 5.0 0.9009702
## 2878 Small-Large unconnected 0.8863028 5.0 0.9009702
## 2879 Small-Large unconnected 0.8863028 5.0 0.9009702
## 2880 Small-Large unconnected 0.8863028 5.0 0.9009702
## 2881 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2882 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2883 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2884 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2885 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2886 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2887 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2888 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2889 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2890 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2891 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2892 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2893 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2894 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2895 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2896 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2897 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2898 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2899 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2900 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2901 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2902 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2903 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2904 Small-Large unconnected 2.0784670 11.0 0.0000000
## 2905 Small-Large unconnected 1.4093629 7.5 0.3571855
## 2906 Small-Large unconnected 1.4093629 7.5 0.3571855
## 2907 Small-Large unconnected 1.4093629 7.5 0.3571855
## 2908 Small-Large unconnected 1.4093629 7.5 0.3571855
## 2909 Small-Large unconnected 1.4093629 7.5 0.3571855
## 2910 Small-Large unconnected 1.4093629 7.5 0.3571855
## 2911 Small-Large unconnected 1.4093629 7.5 0.3571855
## 2912 Small-Large unconnected 1.4093629 7.5 0.3571855
## 2913 Small-Large unconnected 1.4093629 7.5 0.3571855
## 2914 Small-Large unconnected 1.4093629 7.5 0.3571855
## 2915 Small-Large unconnected 1.4093629 7.5 0.3571855
## 2916 Small-Large unconnected 1.4093629 7.5 0.3571855
## 2917 Small-Large unconnected 1.4093629 7.5 0.3571855
## 2918 Small-Large unconnected 1.4093629 7.5 0.3571855
## 2919 Small-Large unconnected 1.4093629 7.5 0.3571855
## 2920 Small-Large unconnected 1.4093629 7.5 0.3571855
## 2921 Small-Large unconnected 1.4093629 7.5 0.3571855
## 2922 Small-Large unconnected 1.4093629 7.5 0.3571855
## 2923 Small-Large unconnected 1.4093629 7.5 0.3571855
## 2924 Small-Large unconnected 1.4093629 7.5 0.3571855
## 2925 Small-Large unconnected 1.4093629 7.5 0.3571855
## 2926 Small-Large unconnected 1.4093629 7.5 0.3571855
## 2927 Small-Large unconnected 1.4093629 7.5 0.3571855
## 2928 Small-Large unconnected 1.4093629 7.5 0.3571855
## 2929 Small-Large unconnected 1.5566020 8.0 0.4330945
## 2930 Small-Large unconnected 1.5566020 8.0 0.4330945
## 2931 Small-Large unconnected 1.5566020 8.0 0.4330945
## 2932 Small-Large unconnected 1.5566020 8.0 0.4330945
## 2933 Small-Large unconnected 1.5566020 8.0 0.4330945
## 2934 Small-Large unconnected 1.5566020 8.0 0.4330945
## 2935 Small-Large unconnected 1.5566020 8.0 0.4330945
## 2936 Small-Large unconnected 1.5566020 8.0 0.4330945
## 2937 Small-Large unconnected 1.5566020 8.0 0.4330945
## 2938 Small-Large unconnected 1.5566020 8.0 0.4330945
## 2939 Small-Large unconnected 1.5566020 8.0 0.4330945
## 2940 Small-Large unconnected 1.5566020 8.0 0.4330945
## 2941 Small-Large unconnected 1.5566020 8.0 0.4330945
## 2942 Small-Large unconnected 1.5566020 8.0 0.4330945
## 2943 Small-Large unconnected 1.5566020 8.0 0.4330945
## 2944 Small-Large unconnected 1.5566020 8.0 0.4330945
## 2945 Small-Large unconnected 1.5566020 8.0 0.4330945
## 2946 Small-Large unconnected 1.5566020 8.0 0.4330945
## 2947 Small-Large unconnected 1.5566020 8.0 0.4330945
## 2948 Small-Large unconnected 1.5566020 8.0 0.4330945
## 2949 Small-Large unconnected 1.5566020 8.0 0.4330945
## 2950 Small-Large unconnected 1.5566020 8.0 0.4330945
## 2951 Small-Large unconnected 1.5566020 8.0 0.4330945
## 2952 Small-Large unconnected 1.5566020 8.0 0.4330945
## 2953 Small-Large unconnected 1.3271205 5.0 0.7095691
## 2954 Small-Large unconnected 1.3271205 5.0 0.7095691
## 2955 Small-Large unconnected 1.3271205 5.0 0.7095691
## 2956 Small-Large unconnected 1.3271205 5.0 0.7095691
## 2957 Small-Large unconnected 1.3271205 5.0 0.7095691
## 2958 Small-Large unconnected 1.3271205 5.0 0.7095691
## 2959 Small-Large unconnected 1.3271205 5.0 0.7095691
## 2960 Small-Large unconnected 1.3271205 5.0 0.7095691
## 2961 Small-Large unconnected 1.3271205 5.0 0.7095691
## 2962 Small-Large unconnected 1.3271205 5.0 0.7095691
## 2963 Small-Large unconnected 1.3271205 5.0 0.7095691
## 2964 Small-Large unconnected 1.3271205 5.0 0.7095691
## 2965 Small-Large unconnected 1.3271205 5.0 0.7095691
## 2966 Small-Large unconnected 1.3271205 5.0 0.7095691
## 2967 Small-Large unconnected 1.3271205 5.0 0.7095691
## 2968 Small-Large unconnected 1.3271205 5.0 0.7095691
## 2969 Small-Large unconnected 1.3271205 5.0 0.7095691
## 2970 Small-Large unconnected 1.3271205 5.0 0.7095691
## 2971 Small-Large unconnected 1.3271205 5.0 0.7095691
## 2972 Small-Large unconnected 1.3271205 5.0 0.7095691
## 2973 Small-Large unconnected 1.3271205 5.0 0.7095691
## 2974 Small-Large unconnected 1.3271205 5.0 0.7095691
## 2975 Small-Large unconnected 1.3271205 5.0 0.7095691
## 2976 Small-Large unconnected 1.3271205 5.0 0.7095691
## 2977 Small-Large unconnected 1.4700682 6.0 0.5603006
## 2978 Small-Large unconnected 1.4700682 6.0 0.5603006
## 2979 Small-Large unconnected 1.4700682 6.0 0.5603006
## 2980 Small-Large unconnected 1.4700682 6.0 0.5603006
## 2981 Small-Large unconnected 1.4700682 6.0 0.5603006
## 2982 Small-Large unconnected 1.4700682 6.0 0.5603006
## 2983 Small-Large unconnected 1.4700682 6.0 0.5603006
## 2984 Small-Large unconnected 1.4700682 6.0 0.5603006
## 2985 Small-Large unconnected 1.4700682 6.0 0.5603006
## 2986 Small-Large unconnected 1.4700682 6.0 0.5603006
## 2987 Small-Large unconnected 1.4700682 6.0 0.5603006
## 2988 Small-Large unconnected 1.4700682 6.0 0.5603006
## 2989 Small-Large unconnected 1.4700682 6.0 0.5603006
## 2990 Small-Large unconnected 1.4700682 6.0 0.5603006
## 2991 Small-Large unconnected 1.4700682 6.0 0.5603006
## 2992 Small-Large unconnected 1.4700682 6.0 0.5603006
## 2993 Small-Large unconnected 1.4700682 6.0 0.5603006
## 2994 Small-Large unconnected 1.4700682 6.0 0.5603006
## 2995 Small-Large unconnected 1.4700682 6.0 0.5603006
## 2996 Small-Large unconnected 1.4700682 6.0 0.5603006
## 2997 Small-Large unconnected 1.4700682 6.0 0.5603006
## 2998 Small-Large unconnected 1.4700682 6.0 0.5603006
## 2999 Small-Large unconnected 1.4700682 6.0 0.5603006
## 3000 Small-Large unconnected 1.4700682 6.0 0.5603006
## 3001 Small-Large unconnected 1.0940609 4.5 0.8165592
## 3002 Small-Large unconnected 1.0940609 4.5 0.8165592
## 3003 Small-Large unconnected 1.0940609 4.5 0.8165592
## 3004 Small-Large unconnected 1.0940609 4.5 0.8165592
## 3005 Small-Large unconnected 1.0940609 4.5 0.8165592
## 3006 Small-Large unconnected 1.0940609 4.5 0.8165592
## 3007 Small-Large unconnected 1.0940609 4.5 0.8165592
## 3008 Small-Large unconnected 1.0940609 4.5 0.8165592
## 3009 Small-Large unconnected 1.0940609 4.5 0.8165592
## 3010 Small-Large unconnected 1.0940609 4.5 0.8165592
## 3011 Small-Large unconnected 1.0940609 4.5 0.8165592
## 3012 Small-Large unconnected 1.0940609 4.5 0.8165592
## 3013 Small-Large unconnected 1.0940609 4.5 0.8165592
## 3014 Small-Large unconnected 1.0940609 4.5 0.8165592
## 3015 Small-Large unconnected 1.0940609 4.5 0.8165592
## 3016 Small-Large unconnected 1.0940609 4.5 0.8165592
## 3017 Small-Large unconnected 1.0940609 4.5 0.8165592
## 3018 Small-Large unconnected 1.0940609 4.5 0.8165592
## 3019 Small-Large unconnected 1.0940609 4.5 0.8165592
## 3020 Small-Large unconnected 1.0940609 4.5 0.8165592
## 3021 Small-Large unconnected 1.0940609 4.5 0.8165592
## 3022 Small-Large unconnected 1.0940609 4.5 0.8165592
## 3023 Small-Large unconnected 1.0940609 4.5 0.8165592
## 3024 Small-Large unconnected 1.0940609 4.5 0.8165592
## 3025 Small-Large unconnected 0.8851120 4.5 0.9186702
## 3026 Small-Large unconnected 0.8851120 4.5 0.9186702
## 3027 Small-Large unconnected 0.8851120 4.5 0.9186702
## 3028 Small-Large unconnected 0.8851120 4.5 0.9186702
## 3029 Small-Large unconnected 0.8851120 4.5 0.9186702
## 3030 Small-Large unconnected 0.8851120 4.5 0.9186702
## 3031 Small-Large unconnected 0.8851120 4.5 0.9186702
## 3032 Small-Large unconnected 0.8851120 4.5 0.9186702
## 3033 Small-Large unconnected 0.8851120 4.5 0.9186702
## 3034 Small-Large unconnected 0.8851120 4.5 0.9186702
## 3035 Small-Large unconnected 0.8851120 4.5 0.9186702
## 3036 Small-Large unconnected 0.8851120 4.5 0.9186702
## 3037 Small-Large unconnected 0.8851120 4.5 0.9186702
## 3038 Small-Large unconnected 0.8851120 4.5 0.9186702
## 3039 Small-Large unconnected 0.8851120 4.5 0.9186702
## 3040 Small-Large unconnected 0.8851120 4.5 0.9186702
## 3041 Small-Large unconnected 0.8851120 4.5 0.9186702
## 3042 Small-Large unconnected 0.8851120 4.5 0.9186702
## 3043 Small-Large unconnected 0.8851120 4.5 0.9186702
## 3044 Small-Large unconnected 0.8851120 4.5 0.9186702
## 3045 Small-Large unconnected 0.8851120 4.5 0.9186702
## 3046 Small-Large unconnected 0.8851120 4.5 0.9186702
## 3047 Small-Large unconnected 0.8851120 4.5 0.9186702
## 3048 Small-Large unconnected 0.8851120 4.5 0.9186702
## 3049 Small-Large unconnected 1.3912750 7.0 0.8836783
## 3050 Small-Large unconnected 1.3912750 7.0 0.8836783
## 3051 Small-Large unconnected 1.3912750 7.0 0.8836783
## 3052 Small-Large unconnected 1.3912750 7.0 0.8836783
## 3053 Small-Large unconnected 1.3912750 7.0 0.8836783
## 3054 Small-Large unconnected 1.3912750 7.0 0.8836783
## 3055 Small-Large unconnected 1.3912750 7.0 0.8836783
## 3056 Small-Large unconnected 1.3912750 7.0 0.8836783
## 3057 Small-Large unconnected 1.3912750 7.0 0.8836783
## 3058 Small-Large unconnected 1.3912750 7.0 0.8836783
## 3059 Small-Large unconnected 1.3912750 7.0 0.8836783
## 3060 Small-Large unconnected 1.3912750 7.0 0.8836783
## 3061 Small-Large unconnected 1.3912750 7.0 0.8836783
## 3062 Small-Large unconnected 1.3912750 7.0 0.8836783
## 3063 Small-Large unconnected 1.3912750 7.0 0.8836783
## 3064 Small-Large unconnected 1.3912750 7.0 0.8836783
## 3065 Small-Large unconnected 1.3912750 7.0 0.8836783
## 3066 Small-Large unconnected 1.3912750 7.0 0.8836783
## 3067 Small-Large unconnected 1.3912750 7.0 0.8836783
## 3068 Small-Large unconnected 1.3912750 7.0 0.8836783
## 3069 Small-Large unconnected 1.3912750 7.0 0.8836783
## 3070 Small-Large unconnected 1.3912750 7.0 0.8836783
## 3071 Small-Large unconnected 1.3912750 7.0 0.8836783
## 3072 Small-Large unconnected 1.3912750 7.0 0.8836783
## 3073 Small-Large unconnected 2.0784670 11.0 0.0000000
## 3074 Small-Large unconnected 2.0784670 11.0 0.0000000
## 3075 Small-Large unconnected 2.0784670 11.0 0.0000000
## 3076 Small-Large unconnected 2.0784670 11.0 0.0000000
## 3077 Small-Large unconnected 2.0784670 11.0 0.0000000
## 3078 Small-Large unconnected 2.0784670 11.0 0.0000000
## 3079 Small-Large unconnected 2.0784670 11.0 0.0000000
## 3080 Small-Large unconnected 2.0784670 11.0 0.0000000
## 3081 Small-Large unconnected 2.0784670 11.0 0.0000000
## 3082 Small-Large unconnected 2.0784670 11.0 0.0000000
## 3083 Small-Large unconnected 2.0784670 11.0 0.0000000
## 3084 Small-Large unconnected 2.0784670 11.0 0.0000000
## 3085 Small-Large unconnected 2.0784670 11.0 0.0000000
## 3086 Small-Large unconnected 2.0784670 11.0 0.0000000
## 3087 Small-Large unconnected 2.0784670 11.0 0.0000000
## 3088 Small-Large unconnected 2.0784670 11.0 0.0000000
## 3089 Small-Large unconnected 2.0784670 11.0 0.0000000
## 3090 Small-Large unconnected 2.0784670 11.0 0.0000000
## 3091 Small-Large unconnected 2.0784670 11.0 0.0000000
## 3092 Small-Large unconnected 2.0784670 11.0 0.0000000
## 3093 Small-Large unconnected 2.0784670 11.0 0.0000000
## 3094 Small-Large unconnected 2.0784670 11.0 0.0000000
## 3095 Small-Large unconnected 2.0784670 11.0 0.0000000
## 3096 Small-Large unconnected 2.0784670 11.0 0.0000000
## 3097 Small-Large unconnected 1.6434662 8.0 0.6412607
## 3098 Small-Large unconnected 1.6434662 8.0 0.6412607
## 3099 Small-Large unconnected 1.6434662 8.0 0.6412607
## 3100 Small-Large unconnected 1.6434662 8.0 0.6412607
## 3101 Small-Large unconnected 1.6434662 8.0 0.6412607
## 3102 Small-Large unconnected 1.6434662 8.0 0.6412607
## 3103 Small-Large unconnected 1.6434662 8.0 0.6412607
## 3104 Small-Large unconnected 1.6434662 8.0 0.6412607
## 3105 Small-Large unconnected 1.6434662 8.0 0.6412607
## 3106 Small-Large unconnected 1.6434662 8.0 0.6412607
## 3107 Small-Large unconnected 1.6434662 8.0 0.6412607
## 3108 Small-Large unconnected 1.6434662 8.0 0.6412607
## 3109 Small-Large unconnected 1.6434662 8.0 0.6412607
## 3110 Small-Large unconnected 1.6434662 8.0 0.6412607
## 3111 Small-Large unconnected 1.6434662 8.0 0.6412607
## 3112 Small-Large unconnected 1.6434662 8.0 0.6412607
## 3113 Small-Large unconnected 1.6434662 8.0 0.6412607
## 3114 Small-Large unconnected 1.6434662 8.0 0.6412607
## 3115 Small-Large unconnected 1.6434662 8.0 0.6412607
## 3116 Small-Large unconnected 1.6434662 8.0 0.6412607
## 3117 Small-Large unconnected 1.6434662 8.0 0.6412607
## 3118 Small-Large unconnected 1.6434662 8.0 0.6412607
## 3119 Small-Large unconnected 1.6434662 8.0 0.6412607
## 3120 Small-Large unconnected 1.6434662 8.0 0.6412607
## 3121 Small-Large unconnected 1.4835587 6.5 0.3623978
## 3122 Small-Large unconnected 1.4835587 6.5 0.3623978
## 3123 Small-Large unconnected 1.4835587 6.5 0.3623978
## 3124 Small-Large unconnected 1.4835587 6.5 0.3623978
## 3125 Small-Large unconnected 1.4835587 6.5 0.3623978
## 3126 Small-Large unconnected 1.4835587 6.5 0.3623978
## 3127 Small-Large unconnected 1.4835587 6.5 0.3623978
## 3128 Small-Large unconnected 1.4835587 6.5 0.3623978
## 3129 Small-Large unconnected 1.4835587 6.5 0.3623978
## 3130 Small-Large unconnected 1.4835587 6.5 0.3623978
## 3131 Small-Large unconnected 1.4835587 6.5 0.3623978
## 3132 Small-Large unconnected 1.4835587 6.5 0.3623978
## 3133 Small-Large unconnected 1.4835587 6.5 0.3623978
## 3134 Small-Large unconnected 1.4835587 6.5 0.3623978
## 3135 Small-Large unconnected 1.4835587 6.5 0.3623978
## 3136 Small-Large unconnected 1.4835587 6.5 0.3623978
## 3137 Small-Large unconnected 1.4835587 6.5 0.3623978
## 3138 Small-Large unconnected 1.4835587 6.5 0.3623978
## 3139 Small-Large unconnected 1.4835587 6.5 0.3623978
## 3140 Small-Large unconnected 1.4835587 6.5 0.3623978
## 3141 Small-Large unconnected 1.4835587 6.5 0.3623978
## 3142 Small-Large unconnected 1.4835587 6.5 0.3623978
## 3143 Small-Large unconnected 1.4835587 6.5 0.3623978
## 3144 Small-Large unconnected 1.4835587 6.5 0.3623978
## 3145 Small-Large unconnected 1.2463855 5.0 0.7793072
## 3146 Small-Large unconnected 1.2463855 5.0 0.7793072
## 3147 Small-Large unconnected 1.2463855 5.0 0.7793072
## 3148 Small-Large unconnected 1.2463855 5.0 0.7793072
## 3149 Small-Large unconnected 1.2463855 5.0 0.7793072
## 3150 Small-Large unconnected 1.2463855 5.0 0.7793072
## 3151 Small-Large unconnected 1.2463855 5.0 0.7793072
## 3152 Small-Large unconnected 1.2463855 5.0 0.7793072
## 3153 Small-Large unconnected 1.2463855 5.0 0.7793072
## 3154 Small-Large unconnected 1.2463855 5.0 0.7793072
## 3155 Small-Large unconnected 1.2463855 5.0 0.7793072
## 3156 Small-Large unconnected 1.2463855 5.0 0.7793072
## 3157 Small-Large unconnected 1.2463855 5.0 0.7793072
## 3158 Small-Large unconnected 1.2463855 5.0 0.7793072
## 3159 Small-Large unconnected 1.2463855 5.0 0.7793072
## 3160 Small-Large unconnected 1.2463855 5.0 0.7793072
## 3161 Small-Large unconnected 1.2463855 5.0 0.7793072
## 3162 Small-Large unconnected 1.2463855 5.0 0.7793072
## 3163 Small-Large unconnected 1.2463855 5.0 0.7793072
## 3164 Small-Large unconnected 1.2463855 5.0 0.7793072
## 3165 Small-Large unconnected 1.2463855 5.0 0.7793072
## 3166 Small-Large unconnected 1.2463855 5.0 0.7793072
## 3167 Small-Large unconnected 1.2463855 5.0 0.7793072
## 3168 Small-Large unconnected 1.2463855 5.0 0.7793072
## 3169 Small-Large unconnected 1.2432838 4.5 0.6892984
## 3170 Small-Large unconnected 1.2432838 4.5 0.6892984
## 3171 Small-Large unconnected 1.2432838 4.5 0.6892984
## 3172 Small-Large unconnected 1.2432838 4.5 0.6892984
## 3173 Small-Large unconnected 1.2432838 4.5 0.6892984
## 3174 Small-Large unconnected 1.2432838 4.5 0.6892984
## 3175 Small-Large unconnected 1.2432838 4.5 0.6892984
## 3176 Small-Large unconnected 1.2432838 4.5 0.6892984
## 3177 Small-Large unconnected 1.2432838 4.5 0.6892984
## 3178 Small-Large unconnected 1.2432838 4.5 0.6892984
## 3179 Small-Large unconnected 1.2432838 4.5 0.6892984
## 3180 Small-Large unconnected 1.2432838 4.5 0.6892984
## 3181 Small-Large unconnected 1.2432838 4.5 0.6892984
## 3182 Small-Large unconnected 1.2432838 4.5 0.6892984
## 3183 Small-Large unconnected 1.2432838 4.5 0.6892984
## 3184 Small-Large unconnected 1.2432838 4.5 0.6892984
## 3185 Small-Large unconnected 1.2432838 4.5 0.6892984
## 3186 Small-Large unconnected 1.2432838 4.5 0.6892984
## 3187 Small-Large unconnected 1.2432838 4.5 0.6892984
## 3188 Small-Large unconnected 1.2432838 4.5 0.6892984
## 3189 Small-Large unconnected 1.2432838 4.5 0.6892984
## 3190 Small-Large unconnected 1.2432838 4.5 0.6892984
## 3191 Small-Large unconnected 1.2432838 4.5 0.6892984
## 3192 Small-Large unconnected 1.2432838 4.5 0.6892984
## 3193 Small-Large unconnected 1.3041770 5.5 0.8280669
## 3194 Small-Large unconnected 1.3041770 5.5 0.8280669
## 3195 Small-Large unconnected 1.3041770 5.5 0.8280669
## 3196 Small-Large unconnected 1.3041770 5.5 0.8280669
## 3197 Small-Large unconnected 1.3041770 5.5 0.8280669
## 3198 Small-Large unconnected 1.3041770 5.5 0.8280669
## 3199 Small-Large unconnected 1.3041770 5.5 0.8280669
## 3200 Small-Large unconnected 1.3041770 5.5 0.8280669
## 3201 Small-Large unconnected 1.3041770 5.5 0.8280669
## 3202 Small-Large unconnected 1.3041770 5.5 0.8280669
## 3203 Small-Large unconnected 1.3041770 5.5 0.8280669
## 3204 Small-Large unconnected 1.3041770 5.5 0.8280669
## 3205 Small-Large unconnected 1.3041770 5.5 0.8280669
## 3206 Small-Large unconnected 1.3041770 5.5 0.8280669
## 3207 Small-Large unconnected 1.3041770 5.5 0.8280669
## 3208 Small-Large unconnected 1.3041770 5.5 0.8280669
## 3209 Small-Large unconnected 1.3041770 5.5 0.8280669
## 3210 Small-Large unconnected 1.3041770 5.5 0.8280669
## 3211 Small-Large unconnected 1.3041770 5.5 0.8280669
## 3212 Small-Large unconnected 1.3041770 5.5 0.8280669
## 3213 Small-Large unconnected 1.3041770 5.5 0.8280669
## 3214 Small-Large unconnected 1.3041770 5.5 0.8280669
## 3215 Small-Large unconnected 1.3041770 5.5 0.8280669
## 3216 Small-Large unconnected 1.3041770 5.5 0.8280669
## 3217 Small-Large unconnected 0.9845120 4.5 0.8706428
## 3218 Small-Large unconnected 0.9845120 4.5 0.8706428
## 3219 Small-Large unconnected 0.9845120 4.5 0.8706428
## 3220 Small-Large unconnected 0.9845120 4.5 0.8706428
## 3221 Small-Large unconnected 0.9845120 4.5 0.8706428
## 3222 Small-Large unconnected 0.9845120 4.5 0.8706428
## 3223 Small-Large unconnected 0.9845120 4.5 0.8706428
## 3224 Small-Large unconnected 0.9845120 4.5 0.8706428
## 3225 Small-Large unconnected 0.9845120 4.5 0.8706428
## bray_curtis beta_spatial_turnover beta_nestedness beta_total
## 1 0.0000000 0.0000000 0.00000000 0.00000000
## 2 0.0000000 0.0000000 0.00000000 0.00000000
## 3 0.0000000 0.0000000 0.00000000 0.00000000
## 4 0.0000000 0.0000000 0.00000000 0.00000000
## 5 0.0000000 0.0000000 0.00000000 0.00000000
## 6 0.0000000 0.0000000 0.00000000 0.00000000
## 7 0.0000000 0.0000000 0.00000000 0.00000000
## 8 0.0000000 0.0000000 0.00000000 0.00000000
## 9 0.0000000 0.0000000 0.00000000 0.00000000
## 10 0.0000000 0.0000000 0.00000000 0.00000000
## 11 0.0000000 0.0000000 0.00000000 0.00000000
## 12 0.0000000 0.0000000 0.00000000 0.00000000
## 13 0.0000000 0.0000000 0.00000000 0.00000000
## 14 0.0000000 0.0000000 0.00000000 0.00000000
## 15 0.0000000 0.0000000 0.00000000 0.00000000
## 16 0.0000000 0.0000000 0.00000000 0.00000000
## 17 0.0000000 0.0000000 0.00000000 0.00000000
## 18 0.0000000 0.0000000 0.00000000 0.00000000
## 19 0.0000000 0.0000000 0.00000000 0.00000000
## 20 0.0000000 0.0000000 0.00000000 0.00000000
## 21 0.0000000 0.0000000 0.00000000 0.00000000
## 22 0.0000000 0.0000000 0.00000000 0.00000000
## 23 0.0000000 0.0000000 0.00000000 0.00000000
## 24 0.0000000 0.0000000 0.00000000 0.00000000
## 25 0.2343643 0.1428571 0.05714286 0.20000000
## 26 0.2343643 0.1428571 0.05714286 0.20000000
## 27 0.2343643 0.1428571 0.05714286 0.20000000
## 28 0.2343643 0.1428571 0.05714286 0.20000000
## 29 0.2343643 0.1428571 0.05714286 0.20000000
## 30 0.2343643 0.1428571 0.05714286 0.20000000
## 31 0.2343643 0.1428571 0.05714286 0.20000000
## 32 0.2343643 0.1428571 0.05714286 0.20000000
## 33 0.2343643 0.1428571 0.05714286 0.20000000
## 34 0.2343643 0.1428571 0.05714286 0.20000000
## 35 0.2343643 0.1428571 0.05714286 0.20000000
## 36 0.2343643 0.1428571 0.05714286 0.20000000
## 37 0.2343643 0.1428571 0.05714286 0.20000000
## 38 0.2343643 0.1428571 0.05714286 0.20000000
## 39 0.2343643 0.1428571 0.05714286 0.20000000
## 40 0.2343643 0.1428571 0.05714286 0.20000000
## 41 0.2343643 0.1428571 0.05714286 0.20000000
## 42 0.2343643 0.1428571 0.05714286 0.20000000
## 43 0.2343643 0.1428571 0.05714286 0.20000000
## 44 0.2343643 0.1428571 0.05714286 0.20000000
## 45 0.2343643 0.1428571 0.05714286 0.20000000
## 46 0.2343643 0.1428571 0.05714286 0.20000000
## 47 0.2343643 0.1428571 0.05714286 0.20000000
## 48 0.2343643 0.1428571 0.05714286 0.20000000
## 49 0.3357686 0.1250000 0.00000000 0.12500000
## 50 0.3357686 0.1250000 0.00000000 0.12500000
## 51 0.3357686 0.1250000 0.00000000 0.12500000
## 52 0.3357686 0.1250000 0.00000000 0.12500000
## 53 0.3357686 0.1250000 0.00000000 0.12500000
## 54 0.3357686 0.1250000 0.00000000 0.12500000
## 55 0.3357686 0.1250000 0.00000000 0.12500000
## 56 0.3357686 0.1250000 0.00000000 0.12500000
## 57 0.3357686 0.1250000 0.00000000 0.12500000
## 58 0.3357686 0.1250000 0.00000000 0.12500000
## 59 0.3357686 0.1250000 0.00000000 0.12500000
## 60 0.3357686 0.1250000 0.00000000 0.12500000
## 61 0.3357686 0.1250000 0.00000000 0.12500000
## 62 0.3357686 0.1250000 0.00000000 0.12500000
## 63 0.3357686 0.1250000 0.00000000 0.12500000
## 64 0.3357686 0.1250000 0.00000000 0.12500000
## 65 0.3357686 0.1250000 0.00000000 0.12500000
## 66 0.3357686 0.1250000 0.00000000 0.12500000
## 67 0.3357686 0.1250000 0.00000000 0.12500000
## 68 0.3357686 0.1250000 0.00000000 0.12500000
## 69 0.3357686 0.1250000 0.00000000 0.12500000
## 70 0.3357686 0.1250000 0.00000000 0.12500000
## 71 0.3357686 0.1250000 0.00000000 0.12500000
## 72 0.3357686 0.1250000 0.00000000 0.12500000
## 73 0.7485323 0.0000000 0.33333333 0.33333333
## 74 0.7485323 0.0000000 0.33333333 0.33333333
## 75 0.7485323 0.0000000 0.33333333 0.33333333
## 76 0.7485323 0.0000000 0.33333333 0.33333333
## 77 0.7485323 0.0000000 0.33333333 0.33333333
## 78 0.7485323 0.0000000 0.33333333 0.33333333
## 79 0.7485323 0.0000000 0.33333333 0.33333333
## 80 0.7485323 0.0000000 0.33333333 0.33333333
## 81 0.7485323 0.0000000 0.33333333 0.33333333
## 82 0.7485323 0.0000000 0.33333333 0.33333333
## 83 0.7485323 0.0000000 0.33333333 0.33333333
## 84 0.7485323 0.0000000 0.33333333 0.33333333
## 85 0.7485323 0.0000000 0.33333333 0.33333333
## 86 0.7485323 0.0000000 0.33333333 0.33333333
## 87 0.7485323 0.0000000 0.33333333 0.33333333
## 88 0.7485323 0.0000000 0.33333333 0.33333333
## 89 0.7485323 0.0000000 0.33333333 0.33333333
## 90 0.7485323 0.0000000 0.33333333 0.33333333
## 91 0.7485323 0.0000000 0.33333333 0.33333333
## 92 0.7485323 0.0000000 0.33333333 0.33333333
## 93 0.7485323 0.0000000 0.33333333 0.33333333
## 94 0.7485323 0.0000000 0.33333333 0.33333333
## 95 0.7485323 0.0000000 0.33333333 0.33333333
## 96 0.7485323 0.0000000 0.33333333 0.33333333
## 97 0.2530073 0.1428571 0.05714286 0.20000000
## 98 0.2530073 0.1428571 0.05714286 0.20000000
## 99 0.2530073 0.1428571 0.05714286 0.20000000
## 100 0.2530073 0.1428571 0.05714286 0.20000000
## 101 0.2530073 0.1428571 0.05714286 0.20000000
## 102 0.2530073 0.1428571 0.05714286 0.20000000
## 103 0.2530073 0.1428571 0.05714286 0.20000000
## 104 0.2530073 0.1428571 0.05714286 0.20000000
## 105 0.2530073 0.1428571 0.05714286 0.20000000
## 106 0.2530073 0.1428571 0.05714286 0.20000000
## 107 0.2530073 0.1428571 0.05714286 0.20000000
## 108 0.2530073 0.1428571 0.05714286 0.20000000
## 109 0.2530073 0.1428571 0.05714286 0.20000000
## 110 0.2530073 0.1428571 0.05714286 0.20000000
## 111 0.2530073 0.1428571 0.05714286 0.20000000
## 112 0.2530073 0.1428571 0.05714286 0.20000000
## 113 0.2530073 0.1428571 0.05714286 0.20000000
## 114 0.2530073 0.1428571 0.05714286 0.20000000
## 115 0.2530073 0.1428571 0.05714286 0.20000000
## 116 0.2530073 0.1428571 0.05714286 0.20000000
## 117 0.2530073 0.1428571 0.05714286 0.20000000
## 118 0.2530073 0.1428571 0.05714286 0.20000000
## 119 0.2530073 0.1428571 0.05714286 0.20000000
## 120 0.2530073 0.1428571 0.05714286 0.20000000
## 121 0.6697618 0.0000000 0.50000000 0.50000000
## 122 0.6697618 0.0000000 0.50000000 0.50000000
## 123 0.6697618 0.0000000 0.50000000 0.50000000
## 124 0.6697618 0.0000000 0.50000000 0.50000000
## 125 0.6697618 0.0000000 0.50000000 0.50000000
## 126 0.6697618 0.0000000 0.50000000 0.50000000
## 127 0.6697618 0.0000000 0.50000000 0.50000000
## 128 0.6697618 0.0000000 0.50000000 0.50000000
## 129 0.6697618 0.0000000 0.50000000 0.50000000
## 130 0.6697618 0.0000000 0.50000000 0.50000000
## 131 0.6697618 0.0000000 0.50000000 0.50000000
## 132 0.6697618 0.0000000 0.50000000 0.50000000
## 133 0.6697618 0.0000000 0.50000000 0.50000000
## 134 0.6697618 0.0000000 0.50000000 0.50000000
## 135 0.6697618 0.0000000 0.50000000 0.50000000
## 136 0.6697618 0.0000000 0.50000000 0.50000000
## 137 0.6697618 0.0000000 0.50000000 0.50000000
## 138 0.6697618 0.0000000 0.50000000 0.50000000
## 139 0.6697618 0.0000000 0.50000000 0.50000000
## 140 0.6697618 0.0000000 0.50000000 0.50000000
## 141 0.6697618 0.0000000 0.50000000 0.50000000
## 142 0.6697618 0.0000000 0.50000000 0.50000000
## 143 0.6697618 0.0000000 0.50000000 0.50000000
## 144 0.6697618 0.0000000 0.50000000 0.50000000
## 145 0.6679930 0.4000000 0.10000000 0.50000000
## 146 0.6679930 0.4000000 0.10000000 0.50000000
## 147 0.6679930 0.4000000 0.10000000 0.50000000
## 148 0.6679930 0.4000000 0.10000000 0.50000000
## 149 0.6679930 0.4000000 0.10000000 0.50000000
## 150 0.6679930 0.4000000 0.10000000 0.50000000
## 151 0.6679930 0.4000000 0.10000000 0.50000000
## 152 0.6679930 0.4000000 0.10000000 0.50000000
## 153 0.6679930 0.4000000 0.10000000 0.50000000
## 154 0.6679930 0.4000000 0.10000000 0.50000000
## 155 0.6679930 0.4000000 0.10000000 0.50000000
## 156 0.6679930 0.4000000 0.10000000 0.50000000
## 157 0.6679930 0.4000000 0.10000000 0.50000000
## 158 0.6679930 0.4000000 0.10000000 0.50000000
## 159 0.6679930 0.4000000 0.10000000 0.50000000
## 160 0.6679930 0.4000000 0.10000000 0.50000000
## 161 0.6679930 0.4000000 0.10000000 0.50000000
## 162 0.6679930 0.4000000 0.10000000 0.50000000
## 163 0.6679930 0.4000000 0.10000000 0.50000000
## 164 0.6679930 0.4000000 0.10000000 0.50000000
## 165 0.6679930 0.4000000 0.10000000 0.50000000
## 166 0.6679930 0.4000000 0.10000000 0.50000000
## 167 0.6679930 0.4000000 0.10000000 0.50000000
## 168 0.6679930 0.4000000 0.10000000 0.50000000
## 169 0.8449899 0.0000000 0.63636364 0.63636364
## 170 0.8449899 0.0000000 0.63636364 0.63636364
## 171 0.8449899 0.0000000 0.63636364 0.63636364
## 172 0.8449899 0.0000000 0.63636364 0.63636364
## 173 0.8449899 0.0000000 0.63636364 0.63636364
## 174 0.8449899 0.0000000 0.63636364 0.63636364
## 175 0.8449899 0.0000000 0.63636364 0.63636364
## 176 0.8449899 0.0000000 0.63636364 0.63636364
## 177 0.8449899 0.0000000 0.63636364 0.63636364
## 178 0.8449899 0.0000000 0.63636364 0.63636364
## 179 0.8449899 0.0000000 0.63636364 0.63636364
## 180 0.8449899 0.0000000 0.63636364 0.63636364
## 181 0.8449899 0.0000000 0.63636364 0.63636364
## 182 0.8449899 0.0000000 0.63636364 0.63636364
## 183 0.8449899 0.0000000 0.63636364 0.63636364
## 184 0.8449899 0.0000000 0.63636364 0.63636364
## 185 0.8449899 0.0000000 0.63636364 0.63636364
## 186 0.8449899 0.0000000 0.63636364 0.63636364
## 187 0.8449899 0.0000000 0.63636364 0.63636364
## 188 0.8449899 0.0000000 0.63636364 0.63636364
## 189 0.8449899 0.0000000 0.63636364 0.63636364
## 190 0.8449899 0.0000000 0.63636364 0.63636364
## 191 0.8449899 0.0000000 0.63636364 0.63636364
## 192 0.8449899 0.0000000 0.63636364 0.63636364
## 193 0.0000000 0.0000000 0.00000000 0.00000000
## 194 0.0000000 0.0000000 0.00000000 0.00000000
## 195 0.0000000 0.0000000 0.00000000 0.00000000
## 196 0.0000000 0.0000000 0.00000000 0.00000000
## 197 0.0000000 0.0000000 0.00000000 0.00000000
## 198 0.0000000 0.0000000 0.00000000 0.00000000
## 199 0.0000000 0.0000000 0.00000000 0.00000000
## 200 0.0000000 0.0000000 0.00000000 0.00000000
## 201 0.0000000 0.0000000 0.00000000 0.00000000
## 202 0.0000000 0.0000000 0.00000000 0.00000000
## 203 0.0000000 0.0000000 0.00000000 0.00000000
## 204 0.0000000 0.0000000 0.00000000 0.00000000
## 205 0.0000000 0.0000000 0.00000000 0.00000000
## 206 0.0000000 0.0000000 0.00000000 0.00000000
## 207 0.0000000 0.0000000 0.00000000 0.00000000
## 208 0.0000000 0.0000000 0.00000000 0.00000000
## 209 0.0000000 0.0000000 0.00000000 0.00000000
## 210 0.0000000 0.0000000 0.00000000 0.00000000
## 211 0.0000000 0.0000000 0.00000000 0.00000000
## 212 0.0000000 0.0000000 0.00000000 0.00000000
## 213 0.0000000 0.0000000 0.00000000 0.00000000
## 214 0.0000000 0.0000000 0.00000000 0.00000000
## 215 0.0000000 0.0000000 0.00000000 0.00000000
## 216 0.0000000 0.0000000 0.00000000 0.00000000
## 217 0.4148156 0.0000000 0.12500000 0.12500000
## 218 0.4148156 0.0000000 0.12500000 0.12500000
## 219 0.4148156 0.0000000 0.12500000 0.12500000
## 220 0.4148156 0.0000000 0.12500000 0.12500000
## 221 0.4148156 0.0000000 0.12500000 0.12500000
## 222 0.4148156 0.0000000 0.12500000 0.12500000
## 223 0.4148156 0.0000000 0.12500000 0.12500000
## 224 0.4148156 0.0000000 0.12500000 0.12500000
## 225 0.4148156 0.0000000 0.12500000 0.12500000
## 226 0.4148156 0.0000000 0.12500000 0.12500000
## 227 0.4148156 0.0000000 0.12500000 0.12500000
## 228 0.4148156 0.0000000 0.12500000 0.12500000
## 229 0.4148156 0.0000000 0.12500000 0.12500000
## 230 0.4148156 0.0000000 0.12500000 0.12500000
## 231 0.4148156 0.0000000 0.12500000 0.12500000
## 232 0.4148156 0.0000000 0.12500000 0.12500000
## 233 0.4148156 0.0000000 0.12500000 0.12500000
## 234 0.4148156 0.0000000 0.12500000 0.12500000
## 235 0.4148156 0.0000000 0.12500000 0.12500000
## 236 0.4148156 0.0000000 0.12500000 0.12500000
## 237 0.4148156 0.0000000 0.12500000 0.12500000
## 238 0.4148156 0.0000000 0.12500000 0.12500000
## 239 0.4148156 0.0000000 0.12500000 0.12500000
## 240 0.4148156 0.0000000 0.12500000 0.12500000
## 241 0.2515988 0.0000000 0.23076923 0.23076923
## 242 0.2515988 0.0000000 0.23076923 0.23076923
## 243 0.2515988 0.0000000 0.23076923 0.23076923
## 244 0.2515988 0.0000000 0.23076923 0.23076923
## 245 0.2515988 0.0000000 0.23076923 0.23076923
## 246 0.2515988 0.0000000 0.23076923 0.23076923
## 247 0.2515988 0.0000000 0.23076923 0.23076923
## 248 0.2515988 0.0000000 0.23076923 0.23076923
## 249 0.2515988 0.0000000 0.23076923 0.23076923
## 250 0.2515988 0.0000000 0.23076923 0.23076923
## 251 0.2515988 0.0000000 0.23076923 0.23076923
## 252 0.2515988 0.0000000 0.23076923 0.23076923
## 253 0.2515988 0.0000000 0.23076923 0.23076923
## 254 0.2515988 0.0000000 0.23076923 0.23076923
## 255 0.2515988 0.0000000 0.23076923 0.23076923
## 256 0.2515988 0.0000000 0.23076923 0.23076923
## 257 0.2515988 0.0000000 0.23076923 0.23076923
## 258 0.2515988 0.0000000 0.23076923 0.23076923
## 259 0.2515988 0.0000000 0.23076923 0.23076923
## 260 0.2515988 0.0000000 0.23076923 0.23076923
## 261 0.2515988 0.0000000 0.23076923 0.23076923
## 262 0.2515988 0.0000000 0.23076923 0.23076923
## 263 0.2515988 0.0000000 0.23076923 0.23076923
## 264 0.2515988 0.0000000 0.23076923 0.23076923
## 265 0.8207213 0.2500000 0.25000000 0.50000000
## 266 0.8207213 0.2500000 0.25000000 0.50000000
## 267 0.8207213 0.2500000 0.25000000 0.50000000
## 268 0.8207213 0.2500000 0.25000000 0.50000000
## 269 0.8207213 0.2500000 0.25000000 0.50000000
## 270 0.8207213 0.2500000 0.25000000 0.50000000
## 271 0.8207213 0.2500000 0.25000000 0.50000000
## 272 0.8207213 0.2500000 0.25000000 0.50000000
## 273 0.8207213 0.2500000 0.25000000 0.50000000
## 274 0.8207213 0.2500000 0.25000000 0.50000000
## 275 0.8207213 0.2500000 0.25000000 0.50000000
## 276 0.8207213 0.2500000 0.25000000 0.50000000
## 277 0.8207213 0.2500000 0.25000000 0.50000000
## 278 0.8207213 0.2500000 0.25000000 0.50000000
## 279 0.8207213 0.2500000 0.25000000 0.50000000
## 280 0.8207213 0.2500000 0.25000000 0.50000000
## 281 0.8207213 0.2500000 0.25000000 0.50000000
## 282 0.8207213 0.2500000 0.25000000 0.50000000
## 283 0.8207213 0.2500000 0.25000000 0.50000000
## 284 0.8207213 0.2500000 0.25000000 0.50000000
## 285 0.8207213 0.2500000 0.25000000 0.50000000
## 286 0.8207213 0.2500000 0.25000000 0.50000000
## 287 0.8207213 0.2500000 0.25000000 0.50000000
## 288 0.8207213 0.2500000 0.25000000 0.50000000
## 289 0.3883120 0.2000000 0.13333333 0.33333333
## 290 0.3883120 0.2000000 0.13333333 0.33333333
## 291 0.3883120 0.2000000 0.13333333 0.33333333
## 292 0.3883120 0.2000000 0.13333333 0.33333333
## 293 0.3883120 0.2000000 0.13333333 0.33333333
## 294 0.3883120 0.2000000 0.13333333 0.33333333
## 295 0.3883120 0.2000000 0.13333333 0.33333333
## 296 0.3883120 0.2000000 0.13333333 0.33333333
## 297 0.3883120 0.2000000 0.13333333 0.33333333
## 298 0.3883120 0.2000000 0.13333333 0.33333333
## 299 0.3883120 0.2000000 0.13333333 0.33333333
## 300 0.3883120 0.2000000 0.13333333 0.33333333
## 301 0.3883120 0.2000000 0.13333333 0.33333333
## 302 0.3883120 0.2000000 0.13333333 0.33333333
## 303 0.3883120 0.2000000 0.13333333 0.33333333
## 304 0.3883120 0.2000000 0.13333333 0.33333333
## 305 0.3883120 0.2000000 0.13333333 0.33333333
## 306 0.3883120 0.2000000 0.13333333 0.33333333
## 307 0.3883120 0.2000000 0.13333333 0.33333333
## 308 0.3883120 0.2000000 0.13333333 0.33333333
## 309 0.3883120 0.2000000 0.13333333 0.33333333
## 310 0.3883120 0.2000000 0.13333333 0.33333333
## 311 0.3883120 0.2000000 0.13333333 0.33333333
## 312 0.3883120 0.2000000 0.13333333 0.33333333
## 313 0.6477795 0.0000000 0.60000000 0.60000000
## 314 0.6477795 0.0000000 0.60000000 0.60000000
## 315 0.6477795 0.0000000 0.60000000 0.60000000
## 316 0.6477795 0.0000000 0.60000000 0.60000000
## 317 0.6477795 0.0000000 0.60000000 0.60000000
## 318 0.6477795 0.0000000 0.60000000 0.60000000
## 319 0.6477795 0.0000000 0.60000000 0.60000000
## 320 0.6477795 0.0000000 0.60000000 0.60000000
## 321 0.6477795 0.0000000 0.60000000 0.60000000
## 322 0.6477795 0.0000000 0.60000000 0.60000000
## 323 0.6477795 0.0000000 0.60000000 0.60000000
## 324 0.6477795 0.0000000 0.60000000 0.60000000
## 325 0.6477795 0.0000000 0.60000000 0.60000000
## 326 0.6477795 0.0000000 0.60000000 0.60000000
## 327 0.6477795 0.0000000 0.60000000 0.60000000
## 328 0.6477795 0.0000000 0.60000000 0.60000000
## 329 0.6477795 0.0000000 0.60000000 0.60000000
## 330 0.6477795 0.0000000 0.60000000 0.60000000
## 331 0.6477795 0.0000000 0.60000000 0.60000000
## 332 0.6477795 0.0000000 0.60000000 0.60000000
## 333 0.6477795 0.0000000 0.60000000 0.60000000
## 334 0.6477795 0.0000000 0.60000000 0.60000000
## 335 0.6477795 0.0000000 0.60000000 0.60000000
## 336 0.6477795 0.0000000 0.60000000 0.60000000
## 337 0.6516066 0.2000000 0.13333333 0.33333333
## 338 0.6516066 0.2000000 0.13333333 0.33333333
## 339 0.6516066 0.2000000 0.13333333 0.33333333
## 340 0.6516066 0.2000000 0.13333333 0.33333333
## 341 0.6516066 0.2000000 0.13333333 0.33333333
## 342 0.6516066 0.2000000 0.13333333 0.33333333
## 343 0.6516066 0.2000000 0.13333333 0.33333333
## 344 0.6516066 0.2000000 0.13333333 0.33333333
## 345 0.6516066 0.2000000 0.13333333 0.33333333
## 346 0.6516066 0.2000000 0.13333333 0.33333333
## 347 0.6516066 0.2000000 0.13333333 0.33333333
## 348 0.6516066 0.2000000 0.13333333 0.33333333
## 349 0.6516066 0.2000000 0.13333333 0.33333333
## 350 0.6516066 0.2000000 0.13333333 0.33333333
## 351 0.6516066 0.2000000 0.13333333 0.33333333
## 352 0.6516066 0.2000000 0.13333333 0.33333333
## 353 0.6516066 0.2000000 0.13333333 0.33333333
## 354 0.6516066 0.2000000 0.13333333 0.33333333
## 355 0.6516066 0.2000000 0.13333333 0.33333333
## 356 0.6516066 0.2000000 0.13333333 0.33333333
## 357 0.6516066 0.2000000 0.13333333 0.33333333
## 358 0.6516066 0.2000000 0.13333333 0.33333333
## 359 0.6516066 0.2000000 0.13333333 0.33333333
## 360 0.6516066 0.2000000 0.13333333 0.33333333
## 361 0.8451064 0.5000000 0.27777778 0.77777778
## 362 0.8451064 0.5000000 0.27777778 0.77777778
## 363 0.8451064 0.5000000 0.27777778 0.77777778
## 364 0.8451064 0.5000000 0.27777778 0.77777778
## 365 0.8451064 0.5000000 0.27777778 0.77777778
## 366 0.8451064 0.5000000 0.27777778 0.77777778
## 367 0.8451064 0.5000000 0.27777778 0.77777778
## 368 0.8451064 0.5000000 0.27777778 0.77777778
## 369 0.8451064 0.5000000 0.27777778 0.77777778
## 370 0.8451064 0.5000000 0.27777778 0.77777778
## 371 0.8451064 0.5000000 0.27777778 0.77777778
## 372 0.8451064 0.5000000 0.27777778 0.77777778
## 373 0.8451064 0.5000000 0.27777778 0.77777778
## 374 0.8451064 0.5000000 0.27777778 0.77777778
## 375 0.8451064 0.5000000 0.27777778 0.77777778
## 376 0.8451064 0.5000000 0.27777778 0.77777778
## 377 0.8451064 0.5000000 0.27777778 0.77777778
## 378 0.8451064 0.5000000 0.27777778 0.77777778
## 379 0.8451064 0.5000000 0.27777778 0.77777778
## 380 0.8451064 0.5000000 0.27777778 0.77777778
## 381 0.8451064 0.5000000 0.27777778 0.77777778
## 382 0.8451064 0.5000000 0.27777778 0.77777778
## 383 0.8451064 0.5000000 0.27777778 0.77777778
## 384 0.8451064 0.5000000 0.27777778 0.77777778
## 385 0.0000000 0.0000000 0.00000000 0.00000000
## 386 0.0000000 0.0000000 0.00000000 0.00000000
## 387 0.0000000 0.0000000 0.00000000 0.00000000
## 388 0.0000000 0.0000000 0.00000000 0.00000000
## 389 0.0000000 0.0000000 0.00000000 0.00000000
## 390 0.0000000 0.0000000 0.00000000 0.00000000
## 391 0.0000000 0.0000000 0.00000000 0.00000000
## 392 0.0000000 0.0000000 0.00000000 0.00000000
## 393 0.0000000 0.0000000 0.00000000 0.00000000
## 394 0.0000000 0.0000000 0.00000000 0.00000000
## 395 0.0000000 0.0000000 0.00000000 0.00000000
## 396 0.0000000 0.0000000 0.00000000 0.00000000
## 397 0.0000000 0.0000000 0.00000000 0.00000000
## 398 0.0000000 0.0000000 0.00000000 0.00000000
## 399 0.0000000 0.0000000 0.00000000 0.00000000
## 400 0.0000000 0.0000000 0.00000000 0.00000000
## 401 0.0000000 0.0000000 0.00000000 0.00000000
## 402 0.0000000 0.0000000 0.00000000 0.00000000
## 403 0.0000000 0.0000000 0.00000000 0.00000000
## 404 0.0000000 0.0000000 0.00000000 0.00000000
## 405 0.0000000 0.0000000 0.00000000 0.00000000
## 406 0.0000000 0.0000000 0.00000000 0.00000000
## 407 0.0000000 0.0000000 0.00000000 0.00000000
## 408 0.0000000 0.0000000 0.00000000 0.00000000
## 409 0.3731106 0.1428571 0.10714286 0.25000000
## 410 0.3731106 0.1428571 0.10714286 0.25000000
## 411 0.3731106 0.1428571 0.10714286 0.25000000
## 412 0.3731106 0.1428571 0.10714286 0.25000000
## 413 0.3731106 0.1428571 0.10714286 0.25000000
## 414 0.3731106 0.1428571 0.10714286 0.25000000
## 415 0.3731106 0.1428571 0.10714286 0.25000000
## 416 0.3731106 0.1428571 0.10714286 0.25000000
## 417 0.3731106 0.1428571 0.10714286 0.25000000
## 418 0.3731106 0.1428571 0.10714286 0.25000000
## 419 0.3731106 0.1428571 0.10714286 0.25000000
## 420 0.3731106 0.1428571 0.10714286 0.25000000
## 421 0.3731106 0.1428571 0.10714286 0.25000000
## 422 0.3731106 0.1428571 0.10714286 0.25000000
## 423 0.3731106 0.1428571 0.10714286 0.25000000
## 424 0.3731106 0.1428571 0.10714286 0.25000000
## 425 0.3731106 0.1428571 0.10714286 0.25000000
## 426 0.3731106 0.1428571 0.10714286 0.25000000
## 427 0.3731106 0.1428571 0.10714286 0.25000000
## 428 0.3731106 0.1428571 0.10714286 0.25000000
## 429 0.3731106 0.1428571 0.10714286 0.25000000
## 430 0.3731106 0.1428571 0.10714286 0.25000000
## 431 0.3731106 0.1428571 0.10714286 0.25000000
## 432 0.3731106 0.1428571 0.10714286 0.25000000
## 433 0.2673691 0.1250000 0.05147059 0.17647059
## 434 0.2673691 0.1250000 0.05147059 0.17647059
## 435 0.2673691 0.1250000 0.05147059 0.17647059
## 436 0.2673691 0.1250000 0.05147059 0.17647059
## 437 0.2673691 0.1250000 0.05147059 0.17647059
## 438 0.2673691 0.1250000 0.05147059 0.17647059
## 439 0.2673691 0.1250000 0.05147059 0.17647059
## 440 0.2673691 0.1250000 0.05147059 0.17647059
## 441 0.2673691 0.1250000 0.05147059 0.17647059
## 442 0.2673691 0.1250000 0.05147059 0.17647059
## 443 0.2673691 0.1250000 0.05147059 0.17647059
## 444 0.2673691 0.1250000 0.05147059 0.17647059
## 445 0.2673691 0.1250000 0.05147059 0.17647059
## 446 0.2673691 0.1250000 0.05147059 0.17647059
## 447 0.2673691 0.1250000 0.05147059 0.17647059
## 448 0.2673691 0.1250000 0.05147059 0.17647059
## 449 0.2673691 0.1250000 0.05147059 0.17647059
## 450 0.2673691 0.1250000 0.05147059 0.17647059
## 451 0.2673691 0.1250000 0.05147059 0.17647059
## 452 0.2673691 0.1250000 0.05147059 0.17647059
## 453 0.2673691 0.1250000 0.05147059 0.17647059
## 454 0.2673691 0.1250000 0.05147059 0.17647059
## 455 0.2673691 0.1250000 0.05147059 0.17647059
## 456 0.2673691 0.1250000 0.05147059 0.17647059
## 457 0.7485323 0.0000000 0.38461538 0.38461538
## 458 0.7485323 0.0000000 0.38461538 0.38461538
## 459 0.7485323 0.0000000 0.38461538 0.38461538
## 460 0.7485323 0.0000000 0.38461538 0.38461538
## 461 0.7485323 0.0000000 0.38461538 0.38461538
## 462 0.7485323 0.0000000 0.38461538 0.38461538
## 463 0.7485323 0.0000000 0.38461538 0.38461538
## 464 0.7485323 0.0000000 0.38461538 0.38461538
## 465 0.7485323 0.0000000 0.38461538 0.38461538
## 466 0.7485323 0.0000000 0.38461538 0.38461538
## 467 0.7485323 0.0000000 0.38461538 0.38461538
## 468 0.7485323 0.0000000 0.38461538 0.38461538
## 469 0.7485323 0.0000000 0.38461538 0.38461538
## 470 0.7485323 0.0000000 0.38461538 0.38461538
## 471 0.7485323 0.0000000 0.38461538 0.38461538
## 472 0.7485323 0.0000000 0.38461538 0.38461538
## 473 0.7485323 0.0000000 0.38461538 0.38461538
## 474 0.7485323 0.0000000 0.38461538 0.38461538
## 475 0.7485323 0.0000000 0.38461538 0.38461538
## 476 0.7485323 0.0000000 0.38461538 0.38461538
## 477 0.7485323 0.0000000 0.38461538 0.38461538
## 478 0.7485323 0.0000000 0.38461538 0.38461538
## 479 0.7485323 0.0000000 0.38461538 0.38461538
## 480 0.7485323 0.0000000 0.38461538 0.38461538
## 481 0.3792106 0.2857143 0.00000000 0.28571429
## 482 0.3792106 0.2857143 0.00000000 0.28571429
## 483 0.3792106 0.2857143 0.00000000 0.28571429
## 484 0.3792106 0.2857143 0.00000000 0.28571429
## 485 0.3792106 0.2857143 0.00000000 0.28571429
## 486 0.3792106 0.2857143 0.00000000 0.28571429
## 487 0.3792106 0.2857143 0.00000000 0.28571429
## 488 0.3792106 0.2857143 0.00000000 0.28571429
## 489 0.3792106 0.2857143 0.00000000 0.28571429
## 490 0.3792106 0.2857143 0.00000000 0.28571429
## 491 0.3792106 0.2857143 0.00000000 0.28571429
## 492 0.3792106 0.2857143 0.00000000 0.28571429
## 493 0.3792106 0.2857143 0.00000000 0.28571429
## 494 0.3792106 0.2857143 0.00000000 0.28571429
## 495 0.3792106 0.2857143 0.00000000 0.28571429
## 496 0.3792106 0.2857143 0.00000000 0.28571429
## 497 0.3792106 0.2857143 0.00000000 0.28571429
## 498 0.3792106 0.2857143 0.00000000 0.28571429
## 499 0.3792106 0.2857143 0.00000000 0.28571429
## 500 0.3792106 0.2857143 0.00000000 0.28571429
## 501 0.3792106 0.2857143 0.00000000 0.28571429
## 502 0.3792106 0.2857143 0.00000000 0.28571429
## 503 0.3792106 0.2857143 0.00000000 0.28571429
## 504 0.3792106 0.2857143 0.00000000 0.28571429
## 505 0.6794872 0.0000000 0.50000000 0.50000000
## 506 0.6794872 0.0000000 0.50000000 0.50000000
## 507 0.6794872 0.0000000 0.50000000 0.50000000
## 508 0.6794872 0.0000000 0.50000000 0.50000000
## 509 0.6794872 0.0000000 0.50000000 0.50000000
## 510 0.6794872 0.0000000 0.50000000 0.50000000
## 511 0.6794872 0.0000000 0.50000000 0.50000000
## 512 0.6794872 0.0000000 0.50000000 0.50000000
## 513 0.6794872 0.0000000 0.50000000 0.50000000
## 514 0.6794872 0.0000000 0.50000000 0.50000000
## 515 0.6794872 0.0000000 0.50000000 0.50000000
## 516 0.6794872 0.0000000 0.50000000 0.50000000
## 517 0.6794872 0.0000000 0.50000000 0.50000000
## 518 0.6794872 0.0000000 0.50000000 0.50000000
## 519 0.6794872 0.0000000 0.50000000 0.50000000
## 520 0.6794872 0.0000000 0.50000000 0.50000000
## 521 0.6794872 0.0000000 0.50000000 0.50000000
## 522 0.6794872 0.0000000 0.50000000 0.50000000
## 523 0.6794872 0.0000000 0.50000000 0.50000000
## 524 0.6794872 0.0000000 0.50000000 0.50000000
## 525 0.6794872 0.0000000 0.50000000 0.50000000
## 526 0.6794872 0.0000000 0.50000000 0.50000000
## 527 0.6794872 0.0000000 0.50000000 0.50000000
## 528 0.6794872 0.0000000 0.50000000 0.50000000
## 529 0.6219470 0.2000000 0.18461538 0.38461538
## 530 0.6219470 0.2000000 0.18461538 0.38461538
## 531 0.6219470 0.2000000 0.18461538 0.38461538
## 532 0.6219470 0.2000000 0.18461538 0.38461538
## 533 0.6219470 0.2000000 0.18461538 0.38461538
## 534 0.6219470 0.2000000 0.18461538 0.38461538
## 535 0.6219470 0.2000000 0.18461538 0.38461538
## 536 0.6219470 0.2000000 0.18461538 0.38461538
## 537 0.6219470 0.2000000 0.18461538 0.38461538
## 538 0.6219470 0.2000000 0.18461538 0.38461538
## 539 0.6219470 0.2000000 0.18461538 0.38461538
## 540 0.6219470 0.2000000 0.18461538 0.38461538
## 541 0.6219470 0.2000000 0.18461538 0.38461538
## 542 0.6219470 0.2000000 0.18461538 0.38461538
## 543 0.6219470 0.2000000 0.18461538 0.38461538
## 544 0.6219470 0.2000000 0.18461538 0.38461538
## 545 0.6219470 0.2000000 0.18461538 0.38461538
## 546 0.6219470 0.2000000 0.18461538 0.38461538
## 547 0.6219470 0.2000000 0.18461538 0.38461538
## 548 0.6219470 0.2000000 0.18461538 0.38461538
## 549 0.6219470 0.2000000 0.18461538 0.38461538
## 550 0.6219470 0.2000000 0.18461538 0.38461538
## 551 0.6219470 0.2000000 0.18461538 0.38461538
## 552 0.6219470 0.2000000 0.18461538 0.38461538
## 553 0.8763303 0.0000000 0.55555556 0.55555556
## 554 0.8763303 0.0000000 0.55555556 0.55555556
## 555 0.8763303 0.0000000 0.55555556 0.55555556
## 556 0.8763303 0.0000000 0.55555556 0.55555556
## 557 0.8763303 0.0000000 0.55555556 0.55555556
## 558 0.8763303 0.0000000 0.55555556 0.55555556
## 559 0.8763303 0.0000000 0.55555556 0.55555556
## 560 0.8763303 0.0000000 0.55555556 0.55555556
## 561 0.8763303 0.0000000 0.55555556 0.55555556
## 562 0.8763303 0.0000000 0.55555556 0.55555556
## 563 0.8763303 0.0000000 0.55555556 0.55555556
## 564 0.8763303 0.0000000 0.55555556 0.55555556
## 565 0.8763303 0.0000000 0.55555556 0.55555556
## 566 0.8763303 0.0000000 0.55555556 0.55555556
## 567 0.8763303 0.0000000 0.55555556 0.55555556
## 568 0.8763303 0.0000000 0.55555556 0.55555556
## 569 0.8763303 0.0000000 0.55555556 0.55555556
## 570 0.8763303 0.0000000 0.55555556 0.55555556
## 571 0.8763303 0.0000000 0.55555556 0.55555556
## 572 0.8763303 0.0000000 0.55555556 0.55555556
## 573 0.8763303 0.0000000 0.55555556 0.55555556
## 574 0.8763303 0.0000000 0.55555556 0.55555556
## 575 0.8763303 0.0000000 0.55555556 0.55555556
## 576 0.8763303 0.0000000 0.55555556 0.55555556
## 577 0.0000000 0.0000000 0.00000000 0.00000000
## 578 0.0000000 0.0000000 0.00000000 0.00000000
## 579 0.0000000 0.0000000 0.00000000 0.00000000
## 580 0.0000000 0.0000000 0.00000000 0.00000000
## 581 0.0000000 0.0000000 0.00000000 0.00000000
## 582 0.0000000 0.0000000 0.00000000 0.00000000
## 583 0.0000000 0.0000000 0.00000000 0.00000000
## 584 0.0000000 0.0000000 0.00000000 0.00000000
## 585 0.0000000 0.0000000 0.00000000 0.00000000
## 586 0.0000000 0.0000000 0.00000000 0.00000000
## 587 0.0000000 0.0000000 0.00000000 0.00000000
## 588 0.0000000 0.0000000 0.00000000 0.00000000
## 589 0.0000000 0.0000000 0.00000000 0.00000000
## 590 0.0000000 0.0000000 0.00000000 0.00000000
## 591 0.0000000 0.0000000 0.00000000 0.00000000
## 592 0.0000000 0.0000000 0.00000000 0.00000000
## 593 0.0000000 0.0000000 0.00000000 0.00000000
## 594 0.0000000 0.0000000 0.00000000 0.00000000
## 595 0.0000000 0.0000000 0.00000000 0.00000000
## 596 0.0000000 0.0000000 0.00000000 0.00000000
## 597 0.0000000 0.0000000 0.00000000 0.00000000
## 598 0.0000000 0.0000000 0.00000000 0.00000000
## 599 0.0000000 0.0000000 0.00000000 0.00000000
## 600 0.0000000 0.0000000 0.00000000 0.00000000
## 601 0.4452403 0.2857143 0.00000000 0.28571429
## 602 0.4452403 0.2857143 0.00000000 0.28571429
## 603 0.4452403 0.2857143 0.00000000 0.28571429
## 604 0.4452403 0.2857143 0.00000000 0.28571429
## 605 0.4452403 0.2857143 0.00000000 0.28571429
## 606 0.4452403 0.2857143 0.00000000 0.28571429
## 607 0.4452403 0.2857143 0.00000000 0.28571429
## 608 0.4452403 0.2857143 0.00000000 0.28571429
## 609 0.4452403 0.2857143 0.00000000 0.28571429
## 610 0.4452403 0.2857143 0.00000000 0.28571429
## 611 0.4452403 0.2857143 0.00000000 0.28571429
## 612 0.4452403 0.2857143 0.00000000 0.28571429
## 613 0.4452403 0.2857143 0.00000000 0.28571429
## 614 0.4452403 0.2857143 0.00000000 0.28571429
## 615 0.4452403 0.2857143 0.00000000 0.28571429
## 616 0.4452403 0.2857143 0.00000000 0.28571429
## 617 0.4452403 0.2857143 0.00000000 0.28571429
## 618 0.4452403 0.2857143 0.00000000 0.28571429
## 619 0.4452403 0.2857143 0.00000000 0.28571429
## 620 0.4452403 0.2857143 0.00000000 0.28571429
## 621 0.4452403 0.2857143 0.00000000 0.28571429
## 622 0.4452403 0.2857143 0.00000000 0.28571429
## 623 0.4452403 0.2857143 0.00000000 0.28571429
## 624 0.4452403 0.2857143 0.00000000 0.28571429
## 625 0.3739477 0.1250000 0.00000000 0.12500000
## 626 0.3739477 0.1250000 0.00000000 0.12500000
## 627 0.3739477 0.1250000 0.00000000 0.12500000
## 628 0.3739477 0.1250000 0.00000000 0.12500000
## 629 0.3739477 0.1250000 0.00000000 0.12500000
## 630 0.3739477 0.1250000 0.00000000 0.12500000
## 631 0.3739477 0.1250000 0.00000000 0.12500000
## 632 0.3739477 0.1250000 0.00000000 0.12500000
## 633 0.3739477 0.1250000 0.00000000 0.12500000
## 634 0.3739477 0.1250000 0.00000000 0.12500000
## 635 0.3739477 0.1250000 0.00000000 0.12500000
## 636 0.3739477 0.1250000 0.00000000 0.12500000
## 637 0.3739477 0.1250000 0.00000000 0.12500000
## 638 0.3739477 0.1250000 0.00000000 0.12500000
## 639 0.3739477 0.1250000 0.00000000 0.12500000
## 640 0.3739477 0.1250000 0.00000000 0.12500000
## 641 0.3739477 0.1250000 0.00000000 0.12500000
## 642 0.3739477 0.1250000 0.00000000 0.12500000
## 643 0.3739477 0.1250000 0.00000000 0.12500000
## 644 0.3739477 0.1250000 0.00000000 0.12500000
## 645 0.3739477 0.1250000 0.00000000 0.12500000
## 646 0.3739477 0.1250000 0.00000000 0.12500000
## 647 0.3739477 0.1250000 0.00000000 0.12500000
## 648 0.3739477 0.1250000 0.00000000 0.12500000
## 649 0.6754098 0.0000000 0.20000000 0.20000000
## 650 0.6754098 0.0000000 0.20000000 0.20000000
## 651 0.6754098 0.0000000 0.20000000 0.20000000
## 652 0.6754098 0.0000000 0.20000000 0.20000000
## 653 0.6754098 0.0000000 0.20000000 0.20000000
## 654 0.6754098 0.0000000 0.20000000 0.20000000
## 655 0.6754098 0.0000000 0.20000000 0.20000000
## 656 0.6754098 0.0000000 0.20000000 0.20000000
## 657 0.6754098 0.0000000 0.20000000 0.20000000
## 658 0.6754098 0.0000000 0.20000000 0.20000000
## 659 0.6754098 0.0000000 0.20000000 0.20000000
## 660 0.6754098 0.0000000 0.20000000 0.20000000
## 661 0.6754098 0.0000000 0.20000000 0.20000000
## 662 0.6754098 0.0000000 0.20000000 0.20000000
## 663 0.6754098 0.0000000 0.20000000 0.20000000
## 664 0.6754098 0.0000000 0.20000000 0.20000000
## 665 0.6754098 0.0000000 0.20000000 0.20000000
## 666 0.6754098 0.0000000 0.20000000 0.20000000
## 667 0.6754098 0.0000000 0.20000000 0.20000000
## 668 0.6754098 0.0000000 0.20000000 0.20000000
## 669 0.6754098 0.0000000 0.20000000 0.20000000
## 670 0.6754098 0.0000000 0.20000000 0.20000000
## 671 0.6754098 0.0000000 0.20000000 0.20000000
## 672 0.6754098 0.0000000 0.20000000 0.20000000
## 673 0.4249668 0.5000000 0.03846154 0.53846154
## 674 0.4249668 0.5000000 0.03846154 0.53846154
## 675 0.4249668 0.5000000 0.03846154 0.53846154
## 676 0.4249668 0.5000000 0.03846154 0.53846154
## 677 0.4249668 0.5000000 0.03846154 0.53846154
## 678 0.4249668 0.5000000 0.03846154 0.53846154
## 679 0.4249668 0.5000000 0.03846154 0.53846154
## 680 0.4249668 0.5000000 0.03846154 0.53846154
## 681 0.4249668 0.5000000 0.03846154 0.53846154
## 682 0.4249668 0.5000000 0.03846154 0.53846154
## 683 0.4249668 0.5000000 0.03846154 0.53846154
## 684 0.4249668 0.5000000 0.03846154 0.53846154
## 685 0.4249668 0.5000000 0.03846154 0.53846154
## 686 0.4249668 0.5000000 0.03846154 0.53846154
## 687 0.4249668 0.5000000 0.03846154 0.53846154
## 688 0.4249668 0.5000000 0.03846154 0.53846154
## 689 0.4249668 0.5000000 0.03846154 0.53846154
## 690 0.4249668 0.5000000 0.03846154 0.53846154
## 691 0.4249668 0.5000000 0.03846154 0.53846154
## 692 0.4249668 0.5000000 0.03846154 0.53846154
## 693 0.4249668 0.5000000 0.03846154 0.53846154
## 694 0.4249668 0.5000000 0.03846154 0.53846154
## 695 0.4249668 0.5000000 0.03846154 0.53846154
## 696 0.4249668 0.5000000 0.03846154 0.53846154
## 697 0.6226024 0.5000000 0.21428571 0.71428571
## 698 0.6226024 0.5000000 0.21428571 0.71428571
## 699 0.6226024 0.5000000 0.21428571 0.71428571
## 700 0.6226024 0.5000000 0.21428571 0.71428571
## 701 0.6226024 0.5000000 0.21428571 0.71428571
## 702 0.6226024 0.5000000 0.21428571 0.71428571
## 703 0.6226024 0.5000000 0.21428571 0.71428571
## 704 0.6226024 0.5000000 0.21428571 0.71428571
## 705 0.6226024 0.5000000 0.21428571 0.71428571
## 706 0.6226024 0.5000000 0.21428571 0.71428571
## 707 0.6226024 0.5000000 0.21428571 0.71428571
## 708 0.6226024 0.5000000 0.21428571 0.71428571
## 709 0.6226024 0.5000000 0.21428571 0.71428571
## 710 0.6226024 0.5000000 0.21428571 0.71428571
## 711 0.6226024 0.5000000 0.21428571 0.71428571
## 712 0.6226024 0.5000000 0.21428571 0.71428571
## 713 0.6226024 0.5000000 0.21428571 0.71428571
## 714 0.6226024 0.5000000 0.21428571 0.71428571
## 715 0.6226024 0.5000000 0.21428571 0.71428571
## 716 0.6226024 0.5000000 0.21428571 0.71428571
## 717 0.6226024 0.5000000 0.21428571 0.71428571
## 718 0.6226024 0.5000000 0.21428571 0.71428571
## 719 0.6226024 0.5000000 0.21428571 0.71428571
## 720 0.6226024 0.5000000 0.21428571 0.71428571
## 721 0.4375000 0.6000000 0.03636364 0.63636364
## 722 0.4375000 0.6000000 0.03636364 0.63636364
## 723 0.4375000 0.6000000 0.03636364 0.63636364
## 724 0.4375000 0.6000000 0.03636364 0.63636364
## 725 0.4375000 0.6000000 0.03636364 0.63636364
## 726 0.4375000 0.6000000 0.03636364 0.63636364
## 727 0.4375000 0.6000000 0.03636364 0.63636364
## 728 0.4375000 0.6000000 0.03636364 0.63636364
## 729 0.4375000 0.6000000 0.03636364 0.63636364
## 730 0.4375000 0.6000000 0.03636364 0.63636364
## 731 0.4375000 0.6000000 0.03636364 0.63636364
## 732 0.4375000 0.6000000 0.03636364 0.63636364
## 733 0.4375000 0.6000000 0.03636364 0.63636364
## 734 0.4375000 0.6000000 0.03636364 0.63636364
## 735 0.4375000 0.6000000 0.03636364 0.63636364
## 736 0.4375000 0.6000000 0.03636364 0.63636364
## 737 0.4375000 0.6000000 0.03636364 0.63636364
## 738 0.4375000 0.6000000 0.03636364 0.63636364
## 739 0.4375000 0.6000000 0.03636364 0.63636364
## 740 0.4375000 0.6000000 0.03636364 0.63636364
## 741 0.4375000 0.6000000 0.03636364 0.63636364
## 742 0.4375000 0.6000000 0.03636364 0.63636364
## 743 0.4375000 0.6000000 0.03636364 0.63636364
## 744 0.4375000 0.6000000 0.03636364 0.63636364
## 745 0.4423077 0.0000000 0.42857143 0.42857143
## 746 0.4423077 0.0000000 0.42857143 0.42857143
## 747 0.4423077 0.0000000 0.42857143 0.42857143
## 748 0.4423077 0.0000000 0.42857143 0.42857143
## 749 0.4423077 0.0000000 0.42857143 0.42857143
## 750 0.4423077 0.0000000 0.42857143 0.42857143
## 751 0.4423077 0.0000000 0.42857143 0.42857143
## 752 0.4423077 0.0000000 0.42857143 0.42857143
## 753 0.4423077 0.0000000 0.42857143 0.42857143
## 754 0.4423077 0.0000000 0.42857143 0.42857143
## 755 0.4423077 0.0000000 0.42857143 0.42857143
## 756 0.4423077 0.0000000 0.42857143 0.42857143
## 757 0.4423077 0.0000000 0.42857143 0.42857143
## 758 0.4423077 0.0000000 0.42857143 0.42857143
## 759 0.4423077 0.0000000 0.42857143 0.42857143
## 760 0.4423077 0.0000000 0.42857143 0.42857143
## 761 0.4423077 0.0000000 0.42857143 0.42857143
## 762 0.4423077 0.0000000 0.42857143 0.42857143
## 763 0.4423077 0.0000000 0.42857143 0.42857143
## 764 0.4423077 0.0000000 0.42857143 0.42857143
## 765 0.4423077 0.0000000 0.42857143 0.42857143
## 766 0.4423077 0.0000000 0.42857143 0.42857143
## 767 0.4423077 0.0000000 0.42857143 0.42857143
## 768 0.4423077 0.0000000 0.42857143 0.42857143
## 769 0.0000000 0.0000000 0.00000000 0.00000000
## 770 0.0000000 0.0000000 0.00000000 0.00000000
## 771 0.0000000 0.0000000 0.00000000 0.00000000
## 772 0.0000000 0.0000000 0.00000000 0.00000000
## 773 0.0000000 0.0000000 0.00000000 0.00000000
## 774 0.0000000 0.0000000 0.00000000 0.00000000
## 775 0.0000000 0.0000000 0.00000000 0.00000000
## 776 0.0000000 0.0000000 0.00000000 0.00000000
## 777 0.0000000 0.0000000 0.00000000 0.00000000
## 778 0.0000000 0.0000000 0.00000000 0.00000000
## 779 0.0000000 0.0000000 0.00000000 0.00000000
## 780 0.0000000 0.0000000 0.00000000 0.00000000
## 781 0.0000000 0.0000000 0.00000000 0.00000000
## 782 0.0000000 0.0000000 0.00000000 0.00000000
## 783 0.0000000 0.0000000 0.00000000 0.00000000
## 784 0.0000000 0.0000000 0.00000000 0.00000000
## 785 0.0000000 0.0000000 0.00000000 0.00000000
## 786 0.0000000 0.0000000 0.00000000 0.00000000
## 787 0.0000000 0.0000000 0.00000000 0.00000000
## 788 0.0000000 0.0000000 0.00000000 0.00000000
## 789 0.0000000 0.0000000 0.00000000 0.00000000
## 790 0.0000000 0.0000000 0.00000000 0.00000000
## 791 0.0000000 0.0000000 0.00000000 0.00000000
## 792 0.0000000 0.0000000 0.00000000 0.00000000
## 793 0.4798427 0.0000000 0.12500000 0.12500000
## 794 0.4798427 0.0000000 0.12500000 0.12500000
## 795 0.4798427 0.0000000 0.12500000 0.12500000
## 796 0.4798427 0.0000000 0.12500000 0.12500000
## 797 0.4798427 0.0000000 0.12500000 0.12500000
## 798 0.4798427 0.0000000 0.12500000 0.12500000
## 799 0.4798427 0.0000000 0.12500000 0.12500000
## 800 0.4798427 0.0000000 0.12500000 0.12500000
## 801 0.4798427 0.0000000 0.12500000 0.12500000
## 802 0.4798427 0.0000000 0.12500000 0.12500000
## 803 0.4798427 0.0000000 0.12500000 0.12500000
## 804 0.4798427 0.0000000 0.12500000 0.12500000
## 805 0.4798427 0.0000000 0.12500000 0.12500000
## 806 0.4798427 0.0000000 0.12500000 0.12500000
## 807 0.4798427 0.0000000 0.12500000 0.12500000
## 808 0.4798427 0.0000000 0.12500000 0.12500000
## 809 0.4798427 0.0000000 0.12500000 0.12500000
## 810 0.4798427 0.0000000 0.12500000 0.12500000
## 811 0.4798427 0.0000000 0.12500000 0.12500000
## 812 0.4798427 0.0000000 0.12500000 0.12500000
## 813 0.4798427 0.0000000 0.12500000 0.12500000
## 814 0.4798427 0.0000000 0.12500000 0.12500000
## 815 0.4798427 0.0000000 0.12500000 0.12500000
## 816 0.4798427 0.0000000 0.12500000 0.12500000
## 817 0.3703838 0.1428571 0.05714286 0.20000000
## 818 0.3703838 0.1428571 0.05714286 0.20000000
## 819 0.3703838 0.1428571 0.05714286 0.20000000
## 820 0.3703838 0.1428571 0.05714286 0.20000000
## 821 0.3703838 0.1428571 0.05714286 0.20000000
## 822 0.3703838 0.1428571 0.05714286 0.20000000
## 823 0.3703838 0.1428571 0.05714286 0.20000000
## 824 0.3703838 0.1428571 0.05714286 0.20000000
## 825 0.3703838 0.1428571 0.05714286 0.20000000
## 826 0.3703838 0.1428571 0.05714286 0.20000000
## 827 0.3703838 0.1428571 0.05714286 0.20000000
## 828 0.3703838 0.1428571 0.05714286 0.20000000
## 829 0.3703838 0.1428571 0.05714286 0.20000000
## 830 0.3703838 0.1428571 0.05714286 0.20000000
## 831 0.3703838 0.1428571 0.05714286 0.20000000
## 832 0.3703838 0.1428571 0.05714286 0.20000000
## 833 0.3703838 0.1428571 0.05714286 0.20000000
## 834 0.3703838 0.1428571 0.05714286 0.20000000
## 835 0.3703838 0.1428571 0.05714286 0.20000000
## 836 0.3703838 0.1428571 0.05714286 0.20000000
## 837 0.3703838 0.1428571 0.05714286 0.20000000
## 838 0.3703838 0.1428571 0.05714286 0.20000000
## 839 0.3703838 0.1428571 0.05714286 0.20000000
## 840 0.3703838 0.1428571 0.05714286 0.20000000
## 841 0.7486772 0.0000000 0.33333333 0.33333333
## 842 0.7486772 0.0000000 0.33333333 0.33333333
## 843 0.7486772 0.0000000 0.33333333 0.33333333
## 844 0.7486772 0.0000000 0.33333333 0.33333333
## 845 0.7486772 0.0000000 0.33333333 0.33333333
## 846 0.7486772 0.0000000 0.33333333 0.33333333
## 847 0.7486772 0.0000000 0.33333333 0.33333333
## 848 0.7486772 0.0000000 0.33333333 0.33333333
## 849 0.7486772 0.0000000 0.33333333 0.33333333
## 850 0.7486772 0.0000000 0.33333333 0.33333333
## 851 0.7486772 0.0000000 0.33333333 0.33333333
## 852 0.7486772 0.0000000 0.33333333 0.33333333
## 853 0.7486772 0.0000000 0.33333333 0.33333333
## 854 0.7486772 0.0000000 0.33333333 0.33333333
## 855 0.7486772 0.0000000 0.33333333 0.33333333
## 856 0.7486772 0.0000000 0.33333333 0.33333333
## 857 0.7486772 0.0000000 0.33333333 0.33333333
## 858 0.7486772 0.0000000 0.33333333 0.33333333
## 859 0.7486772 0.0000000 0.33333333 0.33333333
## 860 0.7486772 0.0000000 0.33333333 0.33333333
## 861 0.7486772 0.0000000 0.33333333 0.33333333
## 862 0.7486772 0.0000000 0.33333333 0.33333333
## 863 0.7486772 0.0000000 0.33333333 0.33333333
## 864 0.7486772 0.0000000 0.33333333 0.33333333
## 865 0.3401808 0.1428571 0.05714286 0.20000000
## 866 0.3401808 0.1428571 0.05714286 0.20000000
## 867 0.3401808 0.1428571 0.05714286 0.20000000
## 868 0.3401808 0.1428571 0.05714286 0.20000000
## 869 0.3401808 0.1428571 0.05714286 0.20000000
## 870 0.3401808 0.1428571 0.05714286 0.20000000
## 871 0.3401808 0.1428571 0.05714286 0.20000000
## 872 0.3401808 0.1428571 0.05714286 0.20000000
## 873 0.3401808 0.1428571 0.05714286 0.20000000
## 874 0.3401808 0.1428571 0.05714286 0.20000000
## 875 0.3401808 0.1428571 0.05714286 0.20000000
## 876 0.3401808 0.1428571 0.05714286 0.20000000
## 877 0.3401808 0.1428571 0.05714286 0.20000000
## 878 0.3401808 0.1428571 0.05714286 0.20000000
## 879 0.3401808 0.1428571 0.05714286 0.20000000
## 880 0.3401808 0.1428571 0.05714286 0.20000000
## 881 0.3401808 0.1428571 0.05714286 0.20000000
## 882 0.3401808 0.1428571 0.05714286 0.20000000
## 883 0.3401808 0.1428571 0.05714286 0.20000000
## 884 0.3401808 0.1428571 0.05714286 0.20000000
## 885 0.3401808 0.1428571 0.05714286 0.20000000
## 886 0.3401808 0.1428571 0.05714286 0.20000000
## 887 0.3401808 0.1428571 0.05714286 0.20000000
## 888 0.3401808 0.1428571 0.05714286 0.20000000
## 889 0.6771930 0.0000000 0.60000000 0.60000000
## 890 0.6771930 0.0000000 0.60000000 0.60000000
## 891 0.6771930 0.0000000 0.60000000 0.60000000
## 892 0.6771930 0.0000000 0.60000000 0.60000000
## 893 0.6771930 0.0000000 0.60000000 0.60000000
## 894 0.6771930 0.0000000 0.60000000 0.60000000
## 895 0.6771930 0.0000000 0.60000000 0.60000000
## 896 0.6771930 0.0000000 0.60000000 0.60000000
## 897 0.6771930 0.0000000 0.60000000 0.60000000
## 898 0.6771930 0.0000000 0.60000000 0.60000000
## 899 0.6771930 0.0000000 0.60000000 0.60000000
## 900 0.6771930 0.0000000 0.60000000 0.60000000
## 901 0.6771930 0.0000000 0.60000000 0.60000000
## 902 0.6771930 0.0000000 0.60000000 0.60000000
## 903 0.6771930 0.0000000 0.60000000 0.60000000
## 904 0.6771930 0.0000000 0.60000000 0.60000000
## 905 0.6771930 0.0000000 0.60000000 0.60000000
## 906 0.6771930 0.0000000 0.60000000 0.60000000
## 907 0.6771930 0.0000000 0.60000000 0.60000000
## 908 0.6771930 0.0000000 0.60000000 0.60000000
## 909 0.6771930 0.0000000 0.60000000 0.60000000
## 910 0.6771930 0.0000000 0.60000000 0.60000000
## 911 0.6771930 0.0000000 0.60000000 0.60000000
## 912 0.6771930 0.0000000 0.60000000 0.60000000
## 913 0.6797269 0.2000000 0.18461538 0.38461538
## 914 0.6797269 0.2000000 0.18461538 0.38461538
## 915 0.6797269 0.2000000 0.18461538 0.38461538
## 916 0.6797269 0.2000000 0.18461538 0.38461538
## 917 0.6797269 0.2000000 0.18461538 0.38461538
## 918 0.6797269 0.2000000 0.18461538 0.38461538
## 919 0.6797269 0.2000000 0.18461538 0.38461538
## 920 0.6797269 0.2000000 0.18461538 0.38461538
## 921 0.6797269 0.2000000 0.18461538 0.38461538
## 922 0.6797269 0.2000000 0.18461538 0.38461538
## 923 0.6797269 0.2000000 0.18461538 0.38461538
## 924 0.6797269 0.2000000 0.18461538 0.38461538
## 925 0.6797269 0.2000000 0.18461538 0.38461538
## 926 0.6797269 0.2000000 0.18461538 0.38461538
## 927 0.6797269 0.2000000 0.18461538 0.38461538
## 928 0.6797269 0.2000000 0.18461538 0.38461538
## 929 0.6797269 0.2000000 0.18461538 0.38461538
## 930 0.6797269 0.2000000 0.18461538 0.38461538
## 931 0.6797269 0.2000000 0.18461538 0.38461538
## 932 0.6797269 0.2000000 0.18461538 0.38461538
## 933 0.6797269 0.2000000 0.18461538 0.38461538
## 934 0.6797269 0.2000000 0.18461538 0.38461538
## 935 0.6797269 0.2000000 0.18461538 0.38461538
## 936 0.6797269 0.2000000 0.18461538 0.38461538
## 937 0.8524125 0.0000000 0.60000000 0.60000000
## 938 0.8524125 0.0000000 0.60000000 0.60000000
## 939 0.8524125 0.0000000 0.60000000 0.60000000
## 940 0.8524125 0.0000000 0.60000000 0.60000000
## 941 0.8524125 0.0000000 0.60000000 0.60000000
## 942 0.8524125 0.0000000 0.60000000 0.60000000
## 943 0.8524125 0.0000000 0.60000000 0.60000000
## 944 0.8524125 0.0000000 0.60000000 0.60000000
## 945 0.8524125 0.0000000 0.60000000 0.60000000
## 946 0.8524125 0.0000000 0.60000000 0.60000000
## 947 0.8524125 0.0000000 0.60000000 0.60000000
## 948 0.8524125 0.0000000 0.60000000 0.60000000
## 949 0.8524125 0.0000000 0.60000000 0.60000000
## 950 0.8524125 0.0000000 0.60000000 0.60000000
## 951 0.8524125 0.0000000 0.60000000 0.60000000
## 952 0.8524125 0.0000000 0.60000000 0.60000000
## 953 0.8524125 0.0000000 0.60000000 0.60000000
## 954 0.8524125 0.0000000 0.60000000 0.60000000
## 955 0.8524125 0.0000000 0.60000000 0.60000000
## 956 0.8524125 0.0000000 0.60000000 0.60000000
## 957 0.8524125 0.0000000 0.60000000 0.60000000
## 958 0.8524125 0.0000000 0.60000000 0.60000000
## 959 0.8524125 0.0000000 0.60000000 0.60000000
## 960 0.8524125 0.0000000 0.60000000 0.60000000
## 961 0.0000000 0.0000000 0.00000000 0.00000000
## 962 0.0000000 0.0000000 0.00000000 0.00000000
## 963 0.0000000 0.0000000 0.00000000 0.00000000
## 964 0.0000000 0.0000000 0.00000000 0.00000000
## 965 0.0000000 0.0000000 0.00000000 0.00000000
## 966 0.0000000 0.0000000 0.00000000 0.00000000
## 967 0.0000000 0.0000000 0.00000000 0.00000000
## 968 0.0000000 0.0000000 0.00000000 0.00000000
## 969 0.0000000 0.0000000 0.00000000 0.00000000
## 970 0.0000000 0.0000000 0.00000000 0.00000000
## 971 0.0000000 0.0000000 0.00000000 0.00000000
## 972 0.0000000 0.0000000 0.00000000 0.00000000
## 973 0.0000000 0.0000000 0.00000000 0.00000000
## 974 0.0000000 0.0000000 0.00000000 0.00000000
## 975 0.0000000 0.0000000 0.00000000 0.00000000
## 976 0.0000000 0.0000000 0.00000000 0.00000000
## 977 0.0000000 0.0000000 0.00000000 0.00000000
## 978 0.0000000 0.0000000 0.00000000 0.00000000
## 979 0.0000000 0.0000000 0.00000000 0.00000000
## 980 0.0000000 0.0000000 0.00000000 0.00000000
## 981 0.0000000 0.0000000 0.00000000 0.00000000
## 982 0.0000000 0.0000000 0.00000000 0.00000000
## 983 0.0000000 0.0000000 0.00000000 0.00000000
## 984 0.0000000 0.0000000 0.00000000 0.00000000
## 985 0.3136722 0.2500000 0.00000000 0.25000000
## 986 0.3136722 0.2500000 0.00000000 0.25000000
## 987 0.3136722 0.2500000 0.00000000 0.25000000
## 988 0.3136722 0.2500000 0.00000000 0.25000000
## 989 0.3136722 0.2500000 0.00000000 0.25000000
## 990 0.3136722 0.2500000 0.00000000 0.25000000
## 991 0.3136722 0.2500000 0.00000000 0.25000000
## 992 0.3136722 0.2500000 0.00000000 0.25000000
## 993 0.3136722 0.2500000 0.00000000 0.25000000
## 994 0.3136722 0.2500000 0.00000000 0.25000000
## 995 0.3136722 0.2500000 0.00000000 0.25000000
## 996 0.3136722 0.2500000 0.00000000 0.25000000
## 997 0.3136722 0.2500000 0.00000000 0.25000000
## 998 0.3136722 0.2500000 0.00000000 0.25000000
## 999 0.3136722 0.2500000 0.00000000 0.25000000
## 1000 0.3136722 0.2500000 0.00000000 0.25000000
## 1001 0.3136722 0.2500000 0.00000000 0.25000000
## 1002 0.3136722 0.2500000 0.00000000 0.25000000
## 1003 0.3136722 0.2500000 0.00000000 0.25000000
## 1004 0.3136722 0.2500000 0.00000000 0.25000000
## 1005 0.3136722 0.2500000 0.00000000 0.25000000
## 1006 0.3136722 0.2500000 0.00000000 0.25000000
## 1007 0.3136722 0.2500000 0.00000000 0.25000000
## 1008 0.3136722 0.2500000 0.00000000 0.25000000
## 1009 0.5154712 0.1250000 0.05147059 0.17647059
## 1010 0.5154712 0.1250000 0.05147059 0.17647059
## 1011 0.5154712 0.1250000 0.05147059 0.17647059
## 1012 0.5154712 0.1250000 0.05147059 0.17647059
## 1013 0.5154712 0.1250000 0.05147059 0.17647059
## 1014 0.5154712 0.1250000 0.05147059 0.17647059
## 1015 0.5154712 0.1250000 0.05147059 0.17647059
## 1016 0.5154712 0.1250000 0.05147059 0.17647059
## 1017 0.5154712 0.1250000 0.05147059 0.17647059
## 1018 0.5154712 0.1250000 0.05147059 0.17647059
## 1019 0.5154712 0.1250000 0.05147059 0.17647059
## 1020 0.5154712 0.1250000 0.05147059 0.17647059
## 1021 0.5154712 0.1250000 0.05147059 0.17647059
## 1022 0.5154712 0.1250000 0.05147059 0.17647059
## 1023 0.5154712 0.1250000 0.05147059 0.17647059
## 1024 0.5154712 0.1250000 0.05147059 0.17647059
## 1025 0.5154712 0.1250000 0.05147059 0.17647059
## 1026 0.5154712 0.1250000 0.05147059 0.17647059
## 1027 0.5154712 0.1250000 0.05147059 0.17647059
## 1028 0.5154712 0.1250000 0.05147059 0.17647059
## 1029 0.5154712 0.1250000 0.05147059 0.17647059
## 1030 0.5154712 0.1250000 0.05147059 0.17647059
## 1031 0.5154712 0.1250000 0.05147059 0.17647059
## 1032 0.5154712 0.1250000 0.05147059 0.17647059
## 1033 0.2919295 0.0000000 0.14285714 0.14285714
## 1034 0.2919295 0.0000000 0.14285714 0.14285714
## 1035 0.2919295 0.0000000 0.14285714 0.14285714
## 1036 0.2919295 0.0000000 0.14285714 0.14285714
## 1037 0.2919295 0.0000000 0.14285714 0.14285714
## 1038 0.2919295 0.0000000 0.14285714 0.14285714
## 1039 0.2919295 0.0000000 0.14285714 0.14285714
## 1040 0.2919295 0.0000000 0.14285714 0.14285714
## 1041 0.2919295 0.0000000 0.14285714 0.14285714
## 1042 0.2919295 0.0000000 0.14285714 0.14285714
## 1043 0.2919295 0.0000000 0.14285714 0.14285714
## 1044 0.2919295 0.0000000 0.14285714 0.14285714
## 1045 0.2919295 0.0000000 0.14285714 0.14285714
## 1046 0.2919295 0.0000000 0.14285714 0.14285714
## 1047 0.2919295 0.0000000 0.14285714 0.14285714
## 1048 0.2919295 0.0000000 0.14285714 0.14285714
## 1049 0.2919295 0.0000000 0.14285714 0.14285714
## 1050 0.2919295 0.0000000 0.14285714 0.14285714
## 1051 0.2919295 0.0000000 0.14285714 0.14285714
## 1052 0.2919295 0.0000000 0.14285714 0.14285714
## 1053 0.2919295 0.0000000 0.14285714 0.14285714
## 1054 0.2919295 0.0000000 0.14285714 0.14285714
## 1055 0.2919295 0.0000000 0.14285714 0.14285714
## 1056 0.2919295 0.0000000 0.14285714 0.14285714
## 1057 0.4418719 0.0000000 0.45454545 0.45454545
## 1058 0.4418719 0.0000000 0.45454545 0.45454545
## 1059 0.4418719 0.0000000 0.45454545 0.45454545
## 1060 0.4418719 0.0000000 0.45454545 0.45454545
## 1061 0.4418719 0.0000000 0.45454545 0.45454545
## 1062 0.4418719 0.0000000 0.45454545 0.45454545
## 1063 0.4418719 0.0000000 0.45454545 0.45454545
## 1064 0.4418719 0.0000000 0.45454545 0.45454545
## 1065 0.4418719 0.0000000 0.45454545 0.45454545
## 1066 0.4418719 0.0000000 0.45454545 0.45454545
## 1067 0.4418719 0.0000000 0.45454545 0.45454545
## 1068 0.4418719 0.0000000 0.45454545 0.45454545
## 1069 0.4418719 0.0000000 0.45454545 0.45454545
## 1070 0.4418719 0.0000000 0.45454545 0.45454545
## 1071 0.4418719 0.0000000 0.45454545 0.45454545
## 1072 0.4418719 0.0000000 0.45454545 0.45454545
## 1073 0.4418719 0.0000000 0.45454545 0.45454545
## 1074 0.4418719 0.0000000 0.45454545 0.45454545
## 1075 0.4418719 0.0000000 0.45454545 0.45454545
## 1076 0.4418719 0.0000000 0.45454545 0.45454545
## 1077 0.4418719 0.0000000 0.45454545 0.45454545
## 1078 0.4418719 0.0000000 0.45454545 0.45454545
## 1079 0.4418719 0.0000000 0.45454545 0.45454545
## 1080 0.4418719 0.0000000 0.45454545 0.45454545
## 1081 0.8716887 0.3333333 0.22222222 0.55555556
## 1082 0.8716887 0.3333333 0.22222222 0.55555556
## 1083 0.8716887 0.3333333 0.22222222 0.55555556
## 1084 0.8716887 0.3333333 0.22222222 0.55555556
## 1085 0.8716887 0.3333333 0.22222222 0.55555556
## 1086 0.8716887 0.3333333 0.22222222 0.55555556
## 1087 0.8716887 0.3333333 0.22222222 0.55555556
## 1088 0.8716887 0.3333333 0.22222222 0.55555556
## 1089 0.8716887 0.3333333 0.22222222 0.55555556
## 1090 0.8716887 0.3333333 0.22222222 0.55555556
## 1091 0.8716887 0.3333333 0.22222222 0.55555556
## 1092 0.8716887 0.3333333 0.22222222 0.55555556
## 1093 0.8716887 0.3333333 0.22222222 0.55555556
## 1094 0.8716887 0.3333333 0.22222222 0.55555556
## 1095 0.8716887 0.3333333 0.22222222 0.55555556
## 1096 0.8716887 0.3333333 0.22222222 0.55555556
## 1097 0.8716887 0.3333333 0.22222222 0.55555556
## 1098 0.8716887 0.3333333 0.22222222 0.55555556
## 1099 0.8716887 0.3333333 0.22222222 0.55555556
## 1100 0.8716887 0.3333333 0.22222222 0.55555556
## 1101 0.8716887 0.3333333 0.22222222 0.55555556
## 1102 0.8716887 0.3333333 0.22222222 0.55555556
## 1103 0.8716887 0.3333333 0.22222222 0.55555556
## 1104 0.8716887 0.3333333 0.22222222 0.55555556
## 1105 0.8084387 0.0000000 0.75000000 0.75000000
## 1106 0.8084387 0.0000000 0.75000000 0.75000000
## 1107 0.8084387 0.0000000 0.75000000 0.75000000
## 1108 0.8084387 0.0000000 0.75000000 0.75000000
## 1109 0.8084387 0.0000000 0.75000000 0.75000000
## 1110 0.8084387 0.0000000 0.75000000 0.75000000
## 1111 0.8084387 0.0000000 0.75000000 0.75000000
## 1112 0.8084387 0.0000000 0.75000000 0.75000000
## 1113 0.8084387 0.0000000 0.75000000 0.75000000
## 1114 0.8084387 0.0000000 0.75000000 0.75000000
## 1115 0.8084387 0.0000000 0.75000000 0.75000000
## 1116 0.8084387 0.0000000 0.75000000 0.75000000
## 1117 0.8084387 0.0000000 0.75000000 0.75000000
## 1118 0.8084387 0.0000000 0.75000000 0.75000000
## 1119 0.8084387 0.0000000 0.75000000 0.75000000
## 1120 0.8084387 0.0000000 0.75000000 0.75000000
## 1121 0.8084387 0.0000000 0.75000000 0.75000000
## 1122 0.8084387 0.0000000 0.75000000 0.75000000
## 1123 0.8084387 0.0000000 0.75000000 0.75000000
## 1124 0.8084387 0.0000000 0.75000000 0.75000000
## 1125 0.8084387 0.0000000 0.75000000 0.75000000
## 1126 0.8084387 0.0000000 0.75000000 0.75000000
## 1127 0.8084387 0.0000000 0.75000000 0.75000000
## 1128 0.8084387 0.0000000 0.75000000 0.75000000
## 1129 0.8977925 0.0000000 0.80000000 0.80000000
## 1130 0.8977925 0.0000000 0.80000000 0.80000000
## 1131 0.8977925 0.0000000 0.80000000 0.80000000
## 1132 0.8977925 0.0000000 0.80000000 0.80000000
## 1133 0.8977925 0.0000000 0.80000000 0.80000000
## 1134 0.8977925 0.0000000 0.80000000 0.80000000
## 1135 0.8977925 0.0000000 0.80000000 0.80000000
## 1136 0.8977925 0.0000000 0.80000000 0.80000000
## 1137 0.8977925 0.0000000 0.80000000 0.80000000
## 1138 0.8977925 0.0000000 0.80000000 0.80000000
## 1139 0.8977925 0.0000000 0.80000000 0.80000000
## 1140 0.8977925 0.0000000 0.80000000 0.80000000
## 1141 0.8977925 0.0000000 0.80000000 0.80000000
## 1142 0.8977925 0.0000000 0.80000000 0.80000000
## 1143 0.8977925 0.0000000 0.80000000 0.80000000
## 1144 0.8977925 0.0000000 0.80000000 0.80000000
## 1145 0.8977925 0.0000000 0.80000000 0.80000000
## 1146 0.8977925 0.0000000 0.80000000 0.80000000
## 1147 0.8977925 0.0000000 0.80000000 0.80000000
## 1148 0.8977925 0.0000000 0.80000000 0.80000000
## 1149 0.8977925 0.0000000 0.80000000 0.80000000
## 1150 0.8977925 0.0000000 0.80000000 0.80000000
## 1151 0.8977925 0.0000000 0.80000000 0.80000000
## 1152 0.8977925 0.0000000 0.80000000 0.80000000
## 1153 0.0000000 0.0000000 0.00000000 0.00000000
## 1154 0.0000000 0.0000000 0.00000000 0.00000000
## 1155 0.0000000 0.0000000 0.00000000 0.00000000
## 1156 0.0000000 0.0000000 0.00000000 0.00000000
## 1157 0.0000000 0.0000000 0.00000000 0.00000000
## 1158 0.0000000 0.0000000 0.00000000 0.00000000
## 1159 0.0000000 0.0000000 0.00000000 0.00000000
## 1160 0.0000000 0.0000000 0.00000000 0.00000000
## 1161 0.0000000 0.0000000 0.00000000 0.00000000
## 1162 0.0000000 0.0000000 0.00000000 0.00000000
## 1163 0.0000000 0.0000000 0.00000000 0.00000000
## 1164 0.0000000 0.0000000 0.00000000 0.00000000
## 1165 0.0000000 0.0000000 0.00000000 0.00000000
## 1166 0.0000000 0.0000000 0.00000000 0.00000000
## 1167 0.0000000 0.0000000 0.00000000 0.00000000
## 1168 0.0000000 0.0000000 0.00000000 0.00000000
## 1169 0.0000000 0.0000000 0.00000000 0.00000000
## 1170 0.0000000 0.0000000 0.00000000 0.00000000
## 1171 0.0000000 0.0000000 0.00000000 0.00000000
## 1172 0.0000000 0.0000000 0.00000000 0.00000000
## 1173 0.0000000 0.0000000 0.00000000 0.00000000
## 1174 0.0000000 0.0000000 0.00000000 0.00000000
## 1175 0.0000000 0.0000000 0.00000000 0.00000000
## 1176 0.0000000 0.0000000 0.00000000 0.00000000
## 1177 0.3202752 0.1250000 0.05147059 0.17647059
## 1178 0.3202752 0.1250000 0.05147059 0.17647059
## 1179 0.3202752 0.1250000 0.05147059 0.17647059
## 1180 0.3202752 0.1250000 0.05147059 0.17647059
## 1181 0.3202752 0.1250000 0.05147059 0.17647059
## 1182 0.3202752 0.1250000 0.05147059 0.17647059
## 1183 0.3202752 0.1250000 0.05147059 0.17647059
## 1184 0.3202752 0.1250000 0.05147059 0.17647059
## 1185 0.3202752 0.1250000 0.05147059 0.17647059
## 1186 0.3202752 0.1250000 0.05147059 0.17647059
## 1187 0.3202752 0.1250000 0.05147059 0.17647059
## 1188 0.3202752 0.1250000 0.05147059 0.17647059
## 1189 0.3202752 0.1250000 0.05147059 0.17647059
## 1190 0.3202752 0.1250000 0.05147059 0.17647059
## 1191 0.3202752 0.1250000 0.05147059 0.17647059
## 1192 0.3202752 0.1250000 0.05147059 0.17647059
## 1193 0.3202752 0.1250000 0.05147059 0.17647059
## 1194 0.3202752 0.1250000 0.05147059 0.17647059
## 1195 0.3202752 0.1250000 0.05147059 0.17647059
## 1196 0.3202752 0.1250000 0.05147059 0.17647059
## 1197 0.3202752 0.1250000 0.05147059 0.17647059
## 1198 0.3202752 0.1250000 0.05147059 0.17647059
## 1199 0.3202752 0.1250000 0.05147059 0.17647059
## 1200 0.3202752 0.1250000 0.05147059 0.17647059
## 1201 0.4416686 0.0000000 0.28571429 0.28571429
## 1202 0.4416686 0.0000000 0.28571429 0.28571429
## 1203 0.4416686 0.0000000 0.28571429 0.28571429
## 1204 0.4416686 0.0000000 0.28571429 0.28571429
## 1205 0.4416686 0.0000000 0.28571429 0.28571429
## 1206 0.4416686 0.0000000 0.28571429 0.28571429
## 1207 0.4416686 0.0000000 0.28571429 0.28571429
## 1208 0.4416686 0.0000000 0.28571429 0.28571429
## 1209 0.4416686 0.0000000 0.28571429 0.28571429
## 1210 0.4416686 0.0000000 0.28571429 0.28571429
## 1211 0.4416686 0.0000000 0.28571429 0.28571429
## 1212 0.4416686 0.0000000 0.28571429 0.28571429
## 1213 0.4416686 0.0000000 0.28571429 0.28571429
## 1214 0.4416686 0.0000000 0.28571429 0.28571429
## 1215 0.4416686 0.0000000 0.28571429 0.28571429
## 1216 0.4416686 0.0000000 0.28571429 0.28571429
## 1217 0.4416686 0.0000000 0.28571429 0.28571429
## 1218 0.4416686 0.0000000 0.28571429 0.28571429
## 1219 0.4416686 0.0000000 0.28571429 0.28571429
## 1220 0.4416686 0.0000000 0.28571429 0.28571429
## 1221 0.4416686 0.0000000 0.28571429 0.28571429
## 1222 0.4416686 0.0000000 0.28571429 0.28571429
## 1223 0.4416686 0.0000000 0.28571429 0.28571429
## 1224 0.4416686 0.0000000 0.28571429 0.28571429
## 1225 0.3505514 0.1666667 0.11904762 0.28571429
## 1226 0.3505514 0.1666667 0.11904762 0.28571429
## 1227 0.3505514 0.1666667 0.11904762 0.28571429
## 1228 0.3505514 0.1666667 0.11904762 0.28571429
## 1229 0.3505514 0.1666667 0.11904762 0.28571429
## 1230 0.3505514 0.1666667 0.11904762 0.28571429
## 1231 0.3505514 0.1666667 0.11904762 0.28571429
## 1232 0.3505514 0.1666667 0.11904762 0.28571429
## 1233 0.3505514 0.1666667 0.11904762 0.28571429
## 1234 0.3505514 0.1666667 0.11904762 0.28571429
## 1235 0.3505514 0.1666667 0.11904762 0.28571429
## 1236 0.3505514 0.1666667 0.11904762 0.28571429
## 1237 0.3505514 0.1666667 0.11904762 0.28571429
## 1238 0.3505514 0.1666667 0.11904762 0.28571429
## 1239 0.3505514 0.1666667 0.11904762 0.28571429
## 1240 0.3505514 0.1666667 0.11904762 0.28571429
## 1241 0.3505514 0.1666667 0.11904762 0.28571429
## 1242 0.3505514 0.1666667 0.11904762 0.28571429
## 1243 0.3505514 0.1666667 0.11904762 0.28571429
## 1244 0.3505514 0.1666667 0.11904762 0.28571429
## 1245 0.3505514 0.1666667 0.11904762 0.28571429
## 1246 0.3505514 0.1666667 0.11904762 0.28571429
## 1247 0.3505514 0.1666667 0.11904762 0.28571429
## 1248 0.3505514 0.1666667 0.11904762 0.28571429
## 1249 0.5994872 0.3333333 0.16666667 0.50000000
## 1250 0.5994872 0.3333333 0.16666667 0.50000000
## 1251 0.5994872 0.3333333 0.16666667 0.50000000
## 1252 0.5994872 0.3333333 0.16666667 0.50000000
## 1253 0.5994872 0.3333333 0.16666667 0.50000000
## 1254 0.5994872 0.3333333 0.16666667 0.50000000
## 1255 0.5994872 0.3333333 0.16666667 0.50000000
## 1256 0.5994872 0.3333333 0.16666667 0.50000000
## 1257 0.5994872 0.3333333 0.16666667 0.50000000
## 1258 0.5994872 0.3333333 0.16666667 0.50000000
## 1259 0.5994872 0.3333333 0.16666667 0.50000000
## 1260 0.5994872 0.3333333 0.16666667 0.50000000
## 1261 0.5994872 0.3333333 0.16666667 0.50000000
## 1262 0.5994872 0.3333333 0.16666667 0.50000000
## 1263 0.5994872 0.3333333 0.16666667 0.50000000
## 1264 0.5994872 0.3333333 0.16666667 0.50000000
## 1265 0.5994872 0.3333333 0.16666667 0.50000000
## 1266 0.5994872 0.3333333 0.16666667 0.50000000
## 1267 0.5994872 0.3333333 0.16666667 0.50000000
## 1268 0.5994872 0.3333333 0.16666667 0.50000000
## 1269 0.5994872 0.3333333 0.16666667 0.50000000
## 1270 0.5994872 0.3333333 0.16666667 0.50000000
## 1271 0.5994872 0.3333333 0.16666667 0.50000000
## 1272 0.5994872 0.3333333 0.16666667 0.50000000
## 1273 0.7404939 0.0000000 0.45454545 0.45454545
## 1274 0.7404939 0.0000000 0.45454545 0.45454545
## 1275 0.7404939 0.0000000 0.45454545 0.45454545
## 1276 0.7404939 0.0000000 0.45454545 0.45454545
## 1277 0.7404939 0.0000000 0.45454545 0.45454545
## 1278 0.7404939 0.0000000 0.45454545 0.45454545
## 1279 0.7404939 0.0000000 0.45454545 0.45454545
## 1280 0.7404939 0.0000000 0.45454545 0.45454545
## 1281 0.7404939 0.0000000 0.45454545 0.45454545
## 1282 0.7404939 0.0000000 0.45454545 0.45454545
## 1283 0.7404939 0.0000000 0.45454545 0.45454545
## 1284 0.7404939 0.0000000 0.45454545 0.45454545
## 1285 0.7404939 0.0000000 0.45454545 0.45454545
## 1286 0.7404939 0.0000000 0.45454545 0.45454545
## 1287 0.7404939 0.0000000 0.45454545 0.45454545
## 1288 0.7404939 0.0000000 0.45454545 0.45454545
## 1289 0.7404939 0.0000000 0.45454545 0.45454545
## 1290 0.7404939 0.0000000 0.45454545 0.45454545
## 1291 0.7404939 0.0000000 0.45454545 0.45454545
## 1292 0.7404939 0.0000000 0.45454545 0.45454545
## 1293 0.7404939 0.0000000 0.45454545 0.45454545
## 1294 0.7404939 0.0000000 0.45454545 0.45454545
## 1295 0.7404939 0.0000000 0.45454545 0.45454545
## 1296 0.7404939 0.0000000 0.45454545 0.45454545
## 1297 0.8031107 0.0000000 0.75000000 0.75000000
## 1298 0.8031107 0.0000000 0.75000000 0.75000000
## 1299 0.8031107 0.0000000 0.75000000 0.75000000
## 1300 0.8031107 0.0000000 0.75000000 0.75000000
## 1301 0.8031107 0.0000000 0.75000000 0.75000000
## 1302 0.8031107 0.0000000 0.75000000 0.75000000
## 1303 0.8031107 0.0000000 0.75000000 0.75000000
## 1304 0.8031107 0.0000000 0.75000000 0.75000000
## 1305 0.8031107 0.0000000 0.75000000 0.75000000
## 1306 0.8031107 0.0000000 0.75000000 0.75000000
## 1307 0.8031107 0.0000000 0.75000000 0.75000000
## 1308 0.8031107 0.0000000 0.75000000 0.75000000
## 1309 0.8031107 0.0000000 0.75000000 0.75000000
## 1310 0.8031107 0.0000000 0.75000000 0.75000000
## 1311 0.8031107 0.0000000 0.75000000 0.75000000
## 1312 0.8031107 0.0000000 0.75000000 0.75000000
## 1313 0.8031107 0.0000000 0.75000000 0.75000000
## 1314 0.8031107 0.0000000 0.75000000 0.75000000
## 1315 0.8031107 0.0000000 0.75000000 0.75000000
## 1316 0.8031107 0.0000000 0.75000000 0.75000000
## 1317 0.8031107 0.0000000 0.75000000 0.75000000
## 1318 0.8031107 0.0000000 0.75000000 0.75000000
## 1319 0.8031107 0.0000000 0.75000000 0.75000000
## 1320 0.8031107 0.0000000 0.75000000 0.75000000
## 1321 0.8694784 0.0000000 0.75000000 0.75000000
## 1322 0.8694784 0.0000000 0.75000000 0.75000000
## 1323 0.8694784 0.0000000 0.75000000 0.75000000
## 1324 0.8694784 0.0000000 0.75000000 0.75000000
## 1325 0.8694784 0.0000000 0.75000000 0.75000000
## 1326 0.8694784 0.0000000 0.75000000 0.75000000
## 1327 0.8694784 0.0000000 0.75000000 0.75000000
## 1328 0.8694784 0.0000000 0.75000000 0.75000000
## 1329 0.8694784 0.0000000 0.75000000 0.75000000
## 1330 0.8694784 0.0000000 0.75000000 0.75000000
## 1331 0.8694784 0.0000000 0.75000000 0.75000000
## 1332 0.8694784 0.0000000 0.75000000 0.75000000
## 1333 0.8694784 0.0000000 0.75000000 0.75000000
## 1334 0.8694784 0.0000000 0.75000000 0.75000000
## 1335 0.8694784 0.0000000 0.75000000 0.75000000
## 1336 0.8694784 0.0000000 0.75000000 0.75000000
## 1337 0.8694784 0.0000000 0.75000000 0.75000000
## 1338 0.8694784 0.0000000 0.75000000 0.75000000
## 1339 0.8694784 0.0000000 0.75000000 0.75000000
## 1340 0.8694784 0.0000000 0.75000000 0.75000000
## 1341 0.8694784 0.0000000 0.75000000 0.75000000
## 1342 0.8694784 0.0000000 0.75000000 0.75000000
## 1343 0.8694784 0.0000000 0.75000000 0.75000000
## 1344 0.8694784 0.0000000 0.75000000 0.75000000
## 1345 0.0000000 0.0000000 0.00000000 0.00000000
## 1346 0.0000000 0.0000000 0.00000000 0.00000000
## 1347 0.0000000 0.0000000 0.00000000 0.00000000
## 1348 0.0000000 0.0000000 0.00000000 0.00000000
## 1349 0.0000000 0.0000000 0.00000000 0.00000000
## 1350 0.0000000 0.0000000 0.00000000 0.00000000
## 1351 0.0000000 0.0000000 0.00000000 0.00000000
## 1352 0.0000000 0.0000000 0.00000000 0.00000000
## 1353 0.0000000 0.0000000 0.00000000 0.00000000
## 1354 0.0000000 0.0000000 0.00000000 0.00000000
## 1355 0.0000000 0.0000000 0.00000000 0.00000000
## 1356 0.0000000 0.0000000 0.00000000 0.00000000
## 1357 0.0000000 0.0000000 0.00000000 0.00000000
## 1358 0.0000000 0.0000000 0.00000000 0.00000000
## 1359 0.0000000 0.0000000 0.00000000 0.00000000
## 1360 0.0000000 0.0000000 0.00000000 0.00000000
## 1361 0.0000000 0.0000000 0.00000000 0.00000000
## 1362 0.0000000 0.0000000 0.00000000 0.00000000
## 1363 0.0000000 0.0000000 0.00000000 0.00000000
## 1364 0.0000000 0.0000000 0.00000000 0.00000000
## 1365 0.0000000 0.0000000 0.00000000 0.00000000
## 1366 0.0000000 0.0000000 0.00000000 0.00000000
## 1367 0.0000000 0.0000000 0.00000000 0.00000000
## 1368 0.0000000 0.0000000 0.00000000 0.00000000
## 1369 0.3469772 0.1250000 0.05147059 0.17647059
## 1370 0.3469772 0.1250000 0.05147059 0.17647059
## 1371 0.3469772 0.1250000 0.05147059 0.17647059
## 1372 0.3469772 0.1250000 0.05147059 0.17647059
## 1373 0.3469772 0.1250000 0.05147059 0.17647059
## 1374 0.3469772 0.1250000 0.05147059 0.17647059
## 1375 0.3469772 0.1250000 0.05147059 0.17647059
## 1376 0.3469772 0.1250000 0.05147059 0.17647059
## 1377 0.3469772 0.1250000 0.05147059 0.17647059
## 1378 0.3469772 0.1250000 0.05147059 0.17647059
## 1379 0.3469772 0.1250000 0.05147059 0.17647059
## 1380 0.3469772 0.1250000 0.05147059 0.17647059
## 1381 0.3469772 0.1250000 0.05147059 0.17647059
## 1382 0.3469772 0.1250000 0.05147059 0.17647059
## 1383 0.3469772 0.1250000 0.05147059 0.17647059
## 1384 0.3469772 0.1250000 0.05147059 0.17647059
## 1385 0.3469772 0.1250000 0.05147059 0.17647059
## 1386 0.3469772 0.1250000 0.05147059 0.17647059
## 1387 0.3469772 0.1250000 0.05147059 0.17647059
## 1388 0.3469772 0.1250000 0.05147059 0.17647059
## 1389 0.3469772 0.1250000 0.05147059 0.17647059
## 1390 0.3469772 0.1250000 0.05147059 0.17647059
## 1391 0.3469772 0.1250000 0.05147059 0.17647059
## 1392 0.3469772 0.1250000 0.05147059 0.17647059
## 1393 0.4354738 0.1111111 0.00000000 0.11111111
## 1394 0.4354738 0.1111111 0.00000000 0.11111111
## 1395 0.4354738 0.1111111 0.00000000 0.11111111
## 1396 0.4354738 0.1111111 0.00000000 0.11111111
## 1397 0.4354738 0.1111111 0.00000000 0.11111111
## 1398 0.4354738 0.1111111 0.00000000 0.11111111
## 1399 0.4354738 0.1111111 0.00000000 0.11111111
## 1400 0.4354738 0.1111111 0.00000000 0.11111111
## 1401 0.4354738 0.1111111 0.00000000 0.11111111
## 1402 0.4354738 0.1111111 0.00000000 0.11111111
## 1403 0.4354738 0.1111111 0.00000000 0.11111111
## 1404 0.4354738 0.1111111 0.00000000 0.11111111
## 1405 0.4354738 0.1111111 0.00000000 0.11111111
## 1406 0.4354738 0.1111111 0.00000000 0.11111111
## 1407 0.4354738 0.1111111 0.00000000 0.11111111
## 1408 0.4354738 0.1111111 0.00000000 0.11111111
## 1409 0.4354738 0.1111111 0.00000000 0.11111111
## 1410 0.4354738 0.1111111 0.00000000 0.11111111
## 1411 0.4354738 0.1111111 0.00000000 0.11111111
## 1412 0.4354738 0.1111111 0.00000000 0.11111111
## 1413 0.4354738 0.1111111 0.00000000 0.11111111
## 1414 0.4354738 0.1111111 0.00000000 0.11111111
## 1415 0.4354738 0.1111111 0.00000000 0.11111111
## 1416 0.4354738 0.1111111 0.00000000 0.11111111
## 1417 0.3385088 0.0000000 0.20000000 0.20000000
## 1418 0.3385088 0.0000000 0.20000000 0.20000000
## 1419 0.3385088 0.0000000 0.20000000 0.20000000
## 1420 0.3385088 0.0000000 0.20000000 0.20000000
## 1421 0.3385088 0.0000000 0.20000000 0.20000000
## 1422 0.3385088 0.0000000 0.20000000 0.20000000
## 1423 0.3385088 0.0000000 0.20000000 0.20000000
## 1424 0.3385088 0.0000000 0.20000000 0.20000000
## 1425 0.3385088 0.0000000 0.20000000 0.20000000
## 1426 0.3385088 0.0000000 0.20000000 0.20000000
## 1427 0.3385088 0.0000000 0.20000000 0.20000000
## 1428 0.3385088 0.0000000 0.20000000 0.20000000
## 1429 0.3385088 0.0000000 0.20000000 0.20000000
## 1430 0.3385088 0.0000000 0.20000000 0.20000000
## 1431 0.3385088 0.0000000 0.20000000 0.20000000
## 1432 0.3385088 0.0000000 0.20000000 0.20000000
## 1433 0.3385088 0.0000000 0.20000000 0.20000000
## 1434 0.3385088 0.0000000 0.20000000 0.20000000
## 1435 0.3385088 0.0000000 0.20000000 0.20000000
## 1436 0.3385088 0.0000000 0.20000000 0.20000000
## 1437 0.3385088 0.0000000 0.20000000 0.20000000
## 1438 0.3385088 0.0000000 0.20000000 0.20000000
## 1439 0.3385088 0.0000000 0.20000000 0.20000000
## 1440 0.3385088 0.0000000 0.20000000 0.20000000
## 1441 0.5940439 0.3333333 0.26666667 0.60000000
## 1442 0.5940439 0.3333333 0.26666667 0.60000000
## 1443 0.5940439 0.3333333 0.26666667 0.60000000
## 1444 0.5940439 0.3333333 0.26666667 0.60000000
## 1445 0.5940439 0.3333333 0.26666667 0.60000000
## 1446 0.5940439 0.3333333 0.26666667 0.60000000
## 1447 0.5940439 0.3333333 0.26666667 0.60000000
## 1448 0.5940439 0.3333333 0.26666667 0.60000000
## 1449 0.5940439 0.3333333 0.26666667 0.60000000
## 1450 0.5940439 0.3333333 0.26666667 0.60000000
## 1451 0.5940439 0.3333333 0.26666667 0.60000000
## 1452 0.5940439 0.3333333 0.26666667 0.60000000
## 1453 0.5940439 0.3333333 0.26666667 0.60000000
## 1454 0.5940439 0.3333333 0.26666667 0.60000000
## 1455 0.5940439 0.3333333 0.26666667 0.60000000
## 1456 0.5940439 0.3333333 0.26666667 0.60000000
## 1457 0.5940439 0.3333333 0.26666667 0.60000000
## 1458 0.5940439 0.3333333 0.26666667 0.60000000
## 1459 0.5940439 0.3333333 0.26666667 0.60000000
## 1460 0.5940439 0.3333333 0.26666667 0.60000000
## 1461 0.5940439 0.3333333 0.26666667 0.60000000
## 1462 0.5940439 0.3333333 0.26666667 0.60000000
## 1463 0.5940439 0.3333333 0.26666667 0.60000000
## 1464 0.5940439 0.3333333 0.26666667 0.60000000
## 1465 0.8289043 0.3333333 0.22222222 0.55555556
## 1466 0.8289043 0.3333333 0.22222222 0.55555556
## 1467 0.8289043 0.3333333 0.22222222 0.55555556
## 1468 0.8289043 0.3333333 0.22222222 0.55555556
## 1469 0.8289043 0.3333333 0.22222222 0.55555556
## 1470 0.8289043 0.3333333 0.22222222 0.55555556
## 1471 0.8289043 0.3333333 0.22222222 0.55555556
## 1472 0.8289043 0.3333333 0.22222222 0.55555556
## 1473 0.8289043 0.3333333 0.22222222 0.55555556
## 1474 0.8289043 0.3333333 0.22222222 0.55555556
## 1475 0.8289043 0.3333333 0.22222222 0.55555556
## 1476 0.8289043 0.3333333 0.22222222 0.55555556
## 1477 0.8289043 0.3333333 0.22222222 0.55555556
## 1478 0.8289043 0.3333333 0.22222222 0.55555556
## 1479 0.8289043 0.3333333 0.22222222 0.55555556
## 1480 0.8289043 0.3333333 0.22222222 0.55555556
## 1481 0.8289043 0.3333333 0.22222222 0.55555556
## 1482 0.8289043 0.3333333 0.22222222 0.55555556
## 1483 0.8289043 0.3333333 0.22222222 0.55555556
## 1484 0.8289043 0.3333333 0.22222222 0.55555556
## 1485 0.8289043 0.3333333 0.22222222 0.55555556
## 1486 0.8289043 0.3333333 0.22222222 0.55555556
## 1487 0.8289043 0.3333333 0.22222222 0.55555556
## 1488 0.8289043 0.3333333 0.22222222 0.55555556
## 1489 0.7909868 0.0000000 0.77777778 0.77777778
## 1490 0.7909868 0.0000000 0.77777778 0.77777778
## 1491 0.7909868 0.0000000 0.77777778 0.77777778
## 1492 0.7909868 0.0000000 0.77777778 0.77777778
## 1493 0.7909868 0.0000000 0.77777778 0.77777778
## 1494 0.7909868 0.0000000 0.77777778 0.77777778
## 1495 0.7909868 0.0000000 0.77777778 0.77777778
## 1496 0.7909868 0.0000000 0.77777778 0.77777778
## 1497 0.7909868 0.0000000 0.77777778 0.77777778
## 1498 0.7909868 0.0000000 0.77777778 0.77777778
## 1499 0.7909868 0.0000000 0.77777778 0.77777778
## 1500 0.7909868 0.0000000 0.77777778 0.77777778
## 1501 0.7909868 0.0000000 0.77777778 0.77777778
## 1502 0.7909868 0.0000000 0.77777778 0.77777778
## 1503 0.7909868 0.0000000 0.77777778 0.77777778
## 1504 0.7909868 0.0000000 0.77777778 0.77777778
## 1505 0.7909868 0.0000000 0.77777778 0.77777778
## 1506 0.7909868 0.0000000 0.77777778 0.77777778
## 1507 0.7909868 0.0000000 0.77777778 0.77777778
## 1508 0.7909868 0.0000000 0.77777778 0.77777778
## 1509 0.7909868 0.0000000 0.77777778 0.77777778
## 1510 0.7909868 0.0000000 0.77777778 0.77777778
## 1511 0.7909868 0.0000000 0.77777778 0.77777778
## 1512 0.7909868 0.0000000 0.77777778 0.77777778
## 1513 0.9186497 0.0000000 0.75000000 0.75000000
## 1514 0.9186497 0.0000000 0.75000000 0.75000000
## 1515 0.9186497 0.0000000 0.75000000 0.75000000
## 1516 0.9186497 0.0000000 0.75000000 0.75000000
## 1517 0.9186497 0.0000000 0.75000000 0.75000000
## 1518 0.9186497 0.0000000 0.75000000 0.75000000
## 1519 0.9186497 0.0000000 0.75000000 0.75000000
## 1520 0.9186497 0.0000000 0.75000000 0.75000000
## 1521 0.9186497 0.0000000 0.75000000 0.75000000
## 1522 0.9186497 0.0000000 0.75000000 0.75000000
## 1523 0.9186497 0.0000000 0.75000000 0.75000000
## 1524 0.9186497 0.0000000 0.75000000 0.75000000
## 1525 0.9186497 0.0000000 0.75000000 0.75000000
## 1526 0.9186497 0.0000000 0.75000000 0.75000000
## 1527 0.9186497 0.0000000 0.75000000 0.75000000
## 1528 0.9186497 0.0000000 0.75000000 0.75000000
## 1529 0.9186497 0.0000000 0.75000000 0.75000000
## 1530 0.9186497 0.0000000 0.75000000 0.75000000
## 1531 0.9186497 0.0000000 0.75000000 0.75000000
## 1532 0.9186497 0.0000000 0.75000000 0.75000000
## 1533 0.9186497 0.0000000 0.75000000 0.75000000
## 1534 0.9186497 0.0000000 0.75000000 0.75000000
## 1535 0.9186497 0.0000000 0.75000000 0.75000000
## 1536 0.9186497 0.0000000 0.75000000 0.75000000
## 1537 0.0000000 0.0000000 0.00000000 0.00000000
## 1538 0.0000000 0.0000000 0.00000000 0.00000000
## 1539 0.0000000 0.0000000 0.00000000 0.00000000
## 1540 0.0000000 0.0000000 0.00000000 0.00000000
## 1541 0.0000000 0.0000000 0.00000000 0.00000000
## 1542 0.0000000 0.0000000 0.00000000 0.00000000
## 1543 0.0000000 0.0000000 0.00000000 0.00000000
## 1544 0.0000000 0.0000000 0.00000000 0.00000000
## 1545 0.0000000 0.0000000 0.00000000 0.00000000
## 1546 0.0000000 0.0000000 0.00000000 0.00000000
## 1547 0.0000000 0.0000000 0.00000000 0.00000000
## 1548 0.0000000 0.0000000 0.00000000 0.00000000
## 1549 0.0000000 0.0000000 0.00000000 0.00000000
## 1550 0.0000000 0.0000000 0.00000000 0.00000000
## 1551 0.0000000 0.0000000 0.00000000 0.00000000
## 1552 0.0000000 0.0000000 0.00000000 0.00000000
## 1553 0.0000000 0.0000000 0.00000000 0.00000000
## 1554 0.0000000 0.0000000 0.00000000 0.00000000
## 1555 0.0000000 0.0000000 0.00000000 0.00000000
## 1556 0.0000000 0.0000000 0.00000000 0.00000000
## 1557 0.0000000 0.0000000 0.00000000 0.00000000
## 1558 0.0000000 0.0000000 0.00000000 0.00000000
## 1559 0.0000000 0.0000000 0.00000000 0.00000000
## 1560 0.0000000 0.0000000 0.00000000 0.00000000
## 1561 0.2449659 0.1428571 0.05714286 0.20000000
## 1562 0.2449659 0.1428571 0.05714286 0.20000000
## 1563 0.2449659 0.1428571 0.05714286 0.20000000
## 1564 0.2449659 0.1428571 0.05714286 0.20000000
## 1565 0.2449659 0.1428571 0.05714286 0.20000000
## 1566 0.2449659 0.1428571 0.05714286 0.20000000
## 1567 0.2449659 0.1428571 0.05714286 0.20000000
## 1568 0.2449659 0.1428571 0.05714286 0.20000000
## 1569 0.2449659 0.1428571 0.05714286 0.20000000
## 1570 0.2449659 0.1428571 0.05714286 0.20000000
## 1571 0.2449659 0.1428571 0.05714286 0.20000000
## 1572 0.2449659 0.1428571 0.05714286 0.20000000
## 1573 0.2449659 0.1428571 0.05714286 0.20000000
## 1574 0.2449659 0.1428571 0.05714286 0.20000000
## 1575 0.2449659 0.1428571 0.05714286 0.20000000
## 1576 0.2449659 0.1428571 0.05714286 0.20000000
## 1577 0.2449659 0.1428571 0.05714286 0.20000000
## 1578 0.2449659 0.1428571 0.05714286 0.20000000
## 1579 0.2449659 0.1428571 0.05714286 0.20000000
## 1580 0.2449659 0.1428571 0.05714286 0.20000000
## 1581 0.2449659 0.1428571 0.05714286 0.20000000
## 1582 0.2449659 0.1428571 0.05714286 0.20000000
## 1583 0.2449659 0.1428571 0.05714286 0.20000000
## 1584 0.2449659 0.1428571 0.05714286 0.20000000
## 1585 0.4391368 0.1250000 0.05147059 0.17647059
## 1586 0.4391368 0.1250000 0.05147059 0.17647059
## 1587 0.4391368 0.1250000 0.05147059 0.17647059
## 1588 0.4391368 0.1250000 0.05147059 0.17647059
## 1589 0.4391368 0.1250000 0.05147059 0.17647059
## 1590 0.4391368 0.1250000 0.05147059 0.17647059
## 1591 0.4391368 0.1250000 0.05147059 0.17647059
## 1592 0.4391368 0.1250000 0.05147059 0.17647059
## 1593 0.4391368 0.1250000 0.05147059 0.17647059
## 1594 0.4391368 0.1250000 0.05147059 0.17647059
## 1595 0.4391368 0.1250000 0.05147059 0.17647059
## 1596 0.4391368 0.1250000 0.05147059 0.17647059
## 1597 0.4391368 0.1250000 0.05147059 0.17647059
## 1598 0.4391368 0.1250000 0.05147059 0.17647059
## 1599 0.4391368 0.1250000 0.05147059 0.17647059
## 1600 0.4391368 0.1250000 0.05147059 0.17647059
## 1601 0.4391368 0.1250000 0.05147059 0.17647059
## 1602 0.4391368 0.1250000 0.05147059 0.17647059
## 1603 0.4391368 0.1250000 0.05147059 0.17647059
## 1604 0.4391368 0.1250000 0.05147059 0.17647059
## 1605 0.4391368 0.1250000 0.05147059 0.17647059
## 1606 0.4391368 0.1250000 0.05147059 0.17647059
## 1607 0.4391368 0.1250000 0.05147059 0.17647059
## 1608 0.4391368 0.1250000 0.05147059 0.17647059
## 1609 0.3402426 0.1666667 0.00000000 0.16666667
## 1610 0.3402426 0.1666667 0.00000000 0.16666667
## 1611 0.3402426 0.1666667 0.00000000 0.16666667
## 1612 0.3402426 0.1666667 0.00000000 0.16666667
## 1613 0.3402426 0.1666667 0.00000000 0.16666667
## 1614 0.3402426 0.1666667 0.00000000 0.16666667
## 1615 0.3402426 0.1666667 0.00000000 0.16666667
## 1616 0.3402426 0.1666667 0.00000000 0.16666667
## 1617 0.3402426 0.1666667 0.00000000 0.16666667
## 1618 0.3402426 0.1666667 0.00000000 0.16666667
## 1619 0.3402426 0.1666667 0.00000000 0.16666667
## 1620 0.3402426 0.1666667 0.00000000 0.16666667
## 1621 0.3402426 0.1666667 0.00000000 0.16666667
## 1622 0.3402426 0.1666667 0.00000000 0.16666667
## 1623 0.3402426 0.1666667 0.00000000 0.16666667
## 1624 0.3402426 0.1666667 0.00000000 0.16666667
## 1625 0.3402426 0.1666667 0.00000000 0.16666667
## 1626 0.3402426 0.1666667 0.00000000 0.16666667
## 1627 0.3402426 0.1666667 0.00000000 0.16666667
## 1628 0.3402426 0.1666667 0.00000000 0.16666667
## 1629 0.3402426 0.1666667 0.00000000 0.16666667
## 1630 0.3402426 0.1666667 0.00000000 0.16666667
## 1631 0.3402426 0.1666667 0.00000000 0.16666667
## 1632 0.3402426 0.1666667 0.00000000 0.16666667
## 1633 0.6258911 0.6666667 0.11111111 0.77777778
## 1634 0.6258911 0.6666667 0.11111111 0.77777778
## 1635 0.6258911 0.6666667 0.11111111 0.77777778
## 1636 0.6258911 0.6666667 0.11111111 0.77777778
## 1637 0.6258911 0.6666667 0.11111111 0.77777778
## 1638 0.6258911 0.6666667 0.11111111 0.77777778
## 1639 0.6258911 0.6666667 0.11111111 0.77777778
## 1640 0.6258911 0.6666667 0.11111111 0.77777778
## 1641 0.6258911 0.6666667 0.11111111 0.77777778
## 1642 0.6258911 0.6666667 0.11111111 0.77777778
## 1643 0.6258911 0.6666667 0.11111111 0.77777778
## 1644 0.6258911 0.6666667 0.11111111 0.77777778
## 1645 0.6258911 0.6666667 0.11111111 0.77777778
## 1646 0.6258911 0.6666667 0.11111111 0.77777778
## 1647 0.6258911 0.6666667 0.11111111 0.77777778
## 1648 0.6258911 0.6666667 0.11111111 0.77777778
## 1649 0.6258911 0.6666667 0.11111111 0.77777778
## 1650 0.6258911 0.6666667 0.11111111 0.77777778
## 1651 0.6258911 0.6666667 0.11111111 0.77777778
## 1652 0.6258911 0.6666667 0.11111111 0.77777778
## 1653 0.6258911 0.6666667 0.11111111 0.77777778
## 1654 0.6258911 0.6666667 0.11111111 0.77777778
## 1655 0.6258911 0.6666667 0.11111111 0.77777778
## 1656 0.6258911 0.6666667 0.11111111 0.77777778
## 1657 0.8822270 0.6666667 0.08333333 0.75000000
## 1658 0.8822270 0.6666667 0.08333333 0.75000000
## 1659 0.8822270 0.6666667 0.08333333 0.75000000
## 1660 0.8822270 0.6666667 0.08333333 0.75000000
## 1661 0.8822270 0.6666667 0.08333333 0.75000000
## 1662 0.8822270 0.6666667 0.08333333 0.75000000
## 1663 0.8822270 0.6666667 0.08333333 0.75000000
## 1664 0.8822270 0.6666667 0.08333333 0.75000000
## 1665 0.8822270 0.6666667 0.08333333 0.75000000
## 1666 0.8822270 0.6666667 0.08333333 0.75000000
## 1667 0.8822270 0.6666667 0.08333333 0.75000000
## 1668 0.8822270 0.6666667 0.08333333 0.75000000
## 1669 0.8822270 0.6666667 0.08333333 0.75000000
## 1670 0.8822270 0.6666667 0.08333333 0.75000000
## 1671 0.8822270 0.6666667 0.08333333 0.75000000
## 1672 0.8822270 0.6666667 0.08333333 0.75000000
## 1673 0.8822270 0.6666667 0.08333333 0.75000000
## 1674 0.8822270 0.6666667 0.08333333 0.75000000
## 1675 0.8822270 0.6666667 0.08333333 0.75000000
## 1676 0.8822270 0.6666667 0.08333333 0.75000000
## 1677 0.8822270 0.6666667 0.08333333 0.75000000
## 1678 0.8822270 0.6666667 0.08333333 0.75000000
## 1679 0.8822270 0.6666667 0.08333333 0.75000000
## 1680 0.8822270 0.6666667 0.08333333 0.75000000
## 1681 0.5858353 0.0000000 0.71428571 0.71428571
## 1682 0.5858353 0.0000000 0.71428571 0.71428571
## 1683 0.5858353 0.0000000 0.71428571 0.71428571
## 1684 0.5858353 0.0000000 0.71428571 0.71428571
## 1685 0.5858353 0.0000000 0.71428571 0.71428571
## 1686 0.5858353 0.0000000 0.71428571 0.71428571
## 1687 0.5858353 0.0000000 0.71428571 0.71428571
## 1688 0.5858353 0.0000000 0.71428571 0.71428571
## 1689 0.5858353 0.0000000 0.71428571 0.71428571
## 1690 0.5858353 0.0000000 0.71428571 0.71428571
## 1691 0.5858353 0.0000000 0.71428571 0.71428571
## 1692 0.5858353 0.0000000 0.71428571 0.71428571
## 1693 0.5858353 0.0000000 0.71428571 0.71428571
## 1694 0.5858353 0.0000000 0.71428571 0.71428571
## 1695 0.5858353 0.0000000 0.71428571 0.71428571
## 1696 0.5858353 0.0000000 0.71428571 0.71428571
## 1697 0.5858353 0.0000000 0.71428571 0.71428571
## 1698 0.5858353 0.0000000 0.71428571 0.71428571
## 1699 0.5858353 0.0000000 0.71428571 0.71428571
## 1700 0.5858353 0.0000000 0.71428571 0.71428571
## 1701 0.5858353 0.0000000 0.71428571 0.71428571
## 1702 0.5858353 0.0000000 0.71428571 0.71428571
## 1703 0.5858353 0.0000000 0.71428571 0.71428571
## 1704 0.5858353 0.0000000 0.71428571 0.71428571
## 1705 0.5997277 0.0000000 0.66666667 0.66666667
## 1706 0.5997277 0.0000000 0.66666667 0.66666667
## 1707 0.5997277 0.0000000 0.66666667 0.66666667
## 1708 0.5997277 0.0000000 0.66666667 0.66666667
## 1709 0.5997277 0.0000000 0.66666667 0.66666667
## 1710 0.5997277 0.0000000 0.66666667 0.66666667
## 1711 0.5997277 0.0000000 0.66666667 0.66666667
## 1712 0.5997277 0.0000000 0.66666667 0.66666667
## 1713 0.5997277 0.0000000 0.66666667 0.66666667
## 1714 0.5997277 0.0000000 0.66666667 0.66666667
## 1715 0.5997277 0.0000000 0.66666667 0.66666667
## 1716 0.5997277 0.0000000 0.66666667 0.66666667
## 1717 0.5997277 0.0000000 0.66666667 0.66666667
## 1718 0.5997277 0.0000000 0.66666667 0.66666667
## 1719 0.5997277 0.0000000 0.66666667 0.66666667
## 1720 0.5997277 0.0000000 0.66666667 0.66666667
## 1721 0.5997277 0.0000000 0.66666667 0.66666667
## 1722 0.5997277 0.0000000 0.66666667 0.66666667
## 1723 0.5997277 0.0000000 0.66666667 0.66666667
## 1724 0.5997277 0.0000000 0.66666667 0.66666667
## 1725 0.5997277 0.0000000 0.66666667 0.66666667
## 1726 0.5997277 0.0000000 0.66666667 0.66666667
## 1727 0.5997277 0.0000000 0.66666667 0.66666667
## 1728 0.5997277 0.0000000 0.66666667 0.66666667
## 1729 0.0000000 0.0000000 0.00000000 0.00000000
## 1730 0.0000000 0.0000000 0.00000000 0.00000000
## 1731 0.0000000 0.0000000 0.00000000 0.00000000
## 1732 0.0000000 0.0000000 0.00000000 0.00000000
## 1733 0.0000000 0.0000000 0.00000000 0.00000000
## 1734 0.0000000 0.0000000 0.00000000 0.00000000
## 1735 0.0000000 0.0000000 0.00000000 0.00000000
## 1736 0.0000000 0.0000000 0.00000000 0.00000000
## 1737 0.0000000 0.0000000 0.00000000 0.00000000
## 1738 0.0000000 0.0000000 0.00000000 0.00000000
## 1739 0.0000000 0.0000000 0.00000000 0.00000000
## 1740 0.0000000 0.0000000 0.00000000 0.00000000
## 1741 0.0000000 0.0000000 0.00000000 0.00000000
## 1742 0.0000000 0.0000000 0.00000000 0.00000000
## 1743 0.0000000 0.0000000 0.00000000 0.00000000
## 1744 0.0000000 0.0000000 0.00000000 0.00000000
## 1745 0.0000000 0.0000000 0.00000000 0.00000000
## 1746 0.0000000 0.0000000 0.00000000 0.00000000
## 1747 0.0000000 0.0000000 0.00000000 0.00000000
## 1748 0.0000000 0.0000000 0.00000000 0.00000000
## 1749 0.0000000 0.0000000 0.00000000 0.00000000
## 1750 0.0000000 0.0000000 0.00000000 0.00000000
## 1751 0.0000000 0.0000000 0.00000000 0.00000000
## 1752 0.0000000 0.0000000 0.00000000 0.00000000
## 1753 0.3551153 0.0000000 0.05882353 0.05882353
## 1754 0.3551153 0.0000000 0.05882353 0.05882353
## 1755 0.3551153 0.0000000 0.05882353 0.05882353
## 1756 0.3551153 0.0000000 0.05882353 0.05882353
## 1757 0.3551153 0.0000000 0.05882353 0.05882353
## 1758 0.3551153 0.0000000 0.05882353 0.05882353
## 1759 0.3551153 0.0000000 0.05882353 0.05882353
## 1760 0.3551153 0.0000000 0.05882353 0.05882353
## 1761 0.3551153 0.0000000 0.05882353 0.05882353
## 1762 0.3551153 0.0000000 0.05882353 0.05882353
## 1763 0.3551153 0.0000000 0.05882353 0.05882353
## 1764 0.3551153 0.0000000 0.05882353 0.05882353
## 1765 0.3551153 0.0000000 0.05882353 0.05882353
## 1766 0.3551153 0.0000000 0.05882353 0.05882353
## 1767 0.3551153 0.0000000 0.05882353 0.05882353
## 1768 0.3551153 0.0000000 0.05882353 0.05882353
## 1769 0.3551153 0.0000000 0.05882353 0.05882353
## 1770 0.3551153 0.0000000 0.05882353 0.05882353
## 1771 0.3551153 0.0000000 0.05882353 0.05882353
## 1772 0.3551153 0.0000000 0.05882353 0.05882353
## 1773 0.3551153 0.0000000 0.05882353 0.05882353
## 1774 0.3551153 0.0000000 0.05882353 0.05882353
## 1775 0.3551153 0.0000000 0.05882353 0.05882353
## 1776 0.3551153 0.0000000 0.05882353 0.05882353
## 1777 0.5391824 0.1428571 0.10714286 0.25000000
## 1778 0.5391824 0.1428571 0.10714286 0.25000000
## 1779 0.5391824 0.1428571 0.10714286 0.25000000
## 1780 0.5391824 0.1428571 0.10714286 0.25000000
## 1781 0.5391824 0.1428571 0.10714286 0.25000000
## 1782 0.5391824 0.1428571 0.10714286 0.25000000
## 1783 0.5391824 0.1428571 0.10714286 0.25000000
## 1784 0.5391824 0.1428571 0.10714286 0.25000000
## 1785 0.5391824 0.1428571 0.10714286 0.25000000
## 1786 0.5391824 0.1428571 0.10714286 0.25000000
## 1787 0.5391824 0.1428571 0.10714286 0.25000000
## 1788 0.5391824 0.1428571 0.10714286 0.25000000
## 1789 0.5391824 0.1428571 0.10714286 0.25000000
## 1790 0.5391824 0.1428571 0.10714286 0.25000000
## 1791 0.5391824 0.1428571 0.10714286 0.25000000
## 1792 0.5391824 0.1428571 0.10714286 0.25000000
## 1793 0.5391824 0.1428571 0.10714286 0.25000000
## 1794 0.5391824 0.1428571 0.10714286 0.25000000
## 1795 0.5391824 0.1428571 0.10714286 0.25000000
## 1796 0.5391824 0.1428571 0.10714286 0.25000000
## 1797 0.5391824 0.1428571 0.10714286 0.25000000
## 1798 0.5391824 0.1428571 0.10714286 0.25000000
## 1799 0.5391824 0.1428571 0.10714286 0.25000000
## 1800 0.5391824 0.1428571 0.10714286 0.25000000
## 1801 0.3120000 0.0000000 0.14285714 0.14285714
## 1802 0.3120000 0.0000000 0.14285714 0.14285714
## 1803 0.3120000 0.0000000 0.14285714 0.14285714
## 1804 0.3120000 0.0000000 0.14285714 0.14285714
## 1805 0.3120000 0.0000000 0.14285714 0.14285714
## 1806 0.3120000 0.0000000 0.14285714 0.14285714
## 1807 0.3120000 0.0000000 0.14285714 0.14285714
## 1808 0.3120000 0.0000000 0.14285714 0.14285714
## 1809 0.3120000 0.0000000 0.14285714 0.14285714
## 1810 0.3120000 0.0000000 0.14285714 0.14285714
## 1811 0.3120000 0.0000000 0.14285714 0.14285714
## 1812 0.3120000 0.0000000 0.14285714 0.14285714
## 1813 0.3120000 0.0000000 0.14285714 0.14285714
## 1814 0.3120000 0.0000000 0.14285714 0.14285714
## 1815 0.3120000 0.0000000 0.14285714 0.14285714
## 1816 0.3120000 0.0000000 0.14285714 0.14285714
## 1817 0.3120000 0.0000000 0.14285714 0.14285714
## 1818 0.3120000 0.0000000 0.14285714 0.14285714
## 1819 0.3120000 0.0000000 0.14285714 0.14285714
## 1820 0.3120000 0.0000000 0.14285714 0.14285714
## 1821 0.3120000 0.0000000 0.14285714 0.14285714
## 1822 0.3120000 0.0000000 0.14285714 0.14285714
## 1823 0.3120000 0.0000000 0.14285714 0.14285714
## 1824 0.3120000 0.0000000 0.14285714 0.14285714
## 1825 0.5950220 0.3333333 0.30303030 0.63636364
## 1826 0.5950220 0.3333333 0.30303030 0.63636364
## 1827 0.5950220 0.3333333 0.30303030 0.63636364
## 1828 0.5950220 0.3333333 0.30303030 0.63636364
## 1829 0.5950220 0.3333333 0.30303030 0.63636364
## 1830 0.5950220 0.3333333 0.30303030 0.63636364
## 1831 0.5950220 0.3333333 0.30303030 0.63636364
## 1832 0.5950220 0.3333333 0.30303030 0.63636364
## 1833 0.5950220 0.3333333 0.30303030 0.63636364
## 1834 0.5950220 0.3333333 0.30303030 0.63636364
## 1835 0.5950220 0.3333333 0.30303030 0.63636364
## 1836 0.5950220 0.3333333 0.30303030 0.63636364
## 1837 0.5950220 0.3333333 0.30303030 0.63636364
## 1838 0.5950220 0.3333333 0.30303030 0.63636364
## 1839 0.5950220 0.3333333 0.30303030 0.63636364
## 1840 0.5950220 0.3333333 0.30303030 0.63636364
## 1841 0.5950220 0.3333333 0.30303030 0.63636364
## 1842 0.5950220 0.3333333 0.30303030 0.63636364
## 1843 0.5950220 0.3333333 0.30303030 0.63636364
## 1844 0.5950220 0.3333333 0.30303030 0.63636364
## 1845 0.5950220 0.3333333 0.30303030 0.63636364
## 1846 0.5950220 0.3333333 0.30303030 0.63636364
## 1847 0.5950220 0.3333333 0.30303030 0.63636364
## 1848 0.5950220 0.3333333 0.30303030 0.63636364
## 1849 0.8314808 0.3333333 0.30303030 0.63636364
## 1850 0.8314808 0.3333333 0.30303030 0.63636364
## 1851 0.8314808 0.3333333 0.30303030 0.63636364
## 1852 0.8314808 0.3333333 0.30303030 0.63636364
## 1853 0.8314808 0.3333333 0.30303030 0.63636364
## 1854 0.8314808 0.3333333 0.30303030 0.63636364
## 1855 0.8314808 0.3333333 0.30303030 0.63636364
## 1856 0.8314808 0.3333333 0.30303030 0.63636364
## 1857 0.8314808 0.3333333 0.30303030 0.63636364
## 1858 0.8314808 0.3333333 0.30303030 0.63636364
## 1859 0.8314808 0.3333333 0.30303030 0.63636364
## 1860 0.8314808 0.3333333 0.30303030 0.63636364
## 1861 0.8314808 0.3333333 0.30303030 0.63636364
## 1862 0.8314808 0.3333333 0.30303030 0.63636364
## 1863 0.8314808 0.3333333 0.30303030 0.63636364
## 1864 0.8314808 0.3333333 0.30303030 0.63636364
## 1865 0.8314808 0.3333333 0.30303030 0.63636364
## 1866 0.8314808 0.3333333 0.30303030 0.63636364
## 1867 0.8314808 0.3333333 0.30303030 0.63636364
## 1868 0.8314808 0.3333333 0.30303030 0.63636364
## 1869 0.8314808 0.3333333 0.30303030 0.63636364
## 1870 0.8314808 0.3333333 0.30303030 0.63636364
## 1871 0.8314808 0.3333333 0.30303030 0.63636364
## 1872 0.8314808 0.3333333 0.30303030 0.63636364
## 1873 0.8227931 0.0000000 0.77777778 0.77777778
## 1874 0.8227931 0.0000000 0.77777778 0.77777778
## 1875 0.8227931 0.0000000 0.77777778 0.77777778
## 1876 0.8227931 0.0000000 0.77777778 0.77777778
## 1877 0.8227931 0.0000000 0.77777778 0.77777778
## 1878 0.8227931 0.0000000 0.77777778 0.77777778
## 1879 0.8227931 0.0000000 0.77777778 0.77777778
## 1880 0.8227931 0.0000000 0.77777778 0.77777778
## 1881 0.8227931 0.0000000 0.77777778 0.77777778
## 1882 0.8227931 0.0000000 0.77777778 0.77777778
## 1883 0.8227931 0.0000000 0.77777778 0.77777778
## 1884 0.8227931 0.0000000 0.77777778 0.77777778
## 1885 0.8227931 0.0000000 0.77777778 0.77777778
## 1886 0.8227931 0.0000000 0.77777778 0.77777778
## 1887 0.8227931 0.0000000 0.77777778 0.77777778
## 1888 0.8227931 0.0000000 0.77777778 0.77777778
## 1889 0.8227931 0.0000000 0.77777778 0.77777778
## 1890 0.8227931 0.0000000 0.77777778 0.77777778
## 1891 0.8227931 0.0000000 0.77777778 0.77777778
## 1892 0.8227931 0.0000000 0.77777778 0.77777778
## 1893 0.8227931 0.0000000 0.77777778 0.77777778
## 1894 0.8227931 0.0000000 0.77777778 0.77777778
## 1895 0.8227931 0.0000000 0.77777778 0.77777778
## 1896 0.8227931 0.0000000 0.77777778 0.77777778
## 1897 0.9043436 0.0000000 0.77777778 0.77777778
## 1898 0.9043436 0.0000000 0.77777778 0.77777778
## 1899 0.9043436 0.0000000 0.77777778 0.77777778
## 1900 0.9043436 0.0000000 0.77777778 0.77777778
## 1901 0.9043436 0.0000000 0.77777778 0.77777778
## 1902 0.9043436 0.0000000 0.77777778 0.77777778
## 1903 0.9043436 0.0000000 0.77777778 0.77777778
## 1904 0.9043436 0.0000000 0.77777778 0.77777778
## 1905 0.9043436 0.0000000 0.77777778 0.77777778
## 1906 0.9043436 0.0000000 0.77777778 0.77777778
## 1907 0.9043436 0.0000000 0.77777778 0.77777778
## 1908 0.9043436 0.0000000 0.77777778 0.77777778
## 1909 0.9043436 0.0000000 0.77777778 0.77777778
## 1910 0.9043436 0.0000000 0.77777778 0.77777778
## 1911 0.9043436 0.0000000 0.77777778 0.77777778
## 1912 0.9043436 0.0000000 0.77777778 0.77777778
## 1913 0.9043436 0.0000000 0.77777778 0.77777778
## 1914 0.9043436 0.0000000 0.77777778 0.77777778
## 1915 0.9043436 0.0000000 0.77777778 0.77777778
## 1916 0.9043436 0.0000000 0.77777778 0.77777778
## 1917 0.9043436 0.0000000 0.77777778 0.77777778
## 1918 0.9043436 0.0000000 0.77777778 0.77777778
## 1919 0.9043436 0.0000000 0.77777778 0.77777778
## 1920 0.9043436 0.0000000 0.77777778 0.77777778
## 1921 0.0000000 0.0000000 0.00000000 0.00000000
## 1922 0.0000000 0.0000000 0.00000000 0.00000000
## 1923 0.0000000 0.0000000 0.00000000 0.00000000
## 1924 0.0000000 0.0000000 0.00000000 0.00000000
## 1925 0.0000000 0.0000000 0.00000000 0.00000000
## 1926 0.0000000 0.0000000 0.00000000 0.00000000
## 1927 0.0000000 0.0000000 0.00000000 0.00000000
## 1928 0.0000000 0.0000000 0.00000000 0.00000000
## 1929 0.0000000 0.0000000 0.00000000 0.00000000
## 1930 0.0000000 0.0000000 0.00000000 0.00000000
## 1931 0.0000000 0.0000000 0.00000000 0.00000000
## 1932 0.0000000 0.0000000 0.00000000 0.00000000
## 1933 0.0000000 0.0000000 0.00000000 0.00000000
## 1934 0.0000000 0.0000000 0.00000000 0.00000000
## 1935 0.0000000 0.0000000 0.00000000 0.00000000
## 1936 0.0000000 0.0000000 0.00000000 0.00000000
## 1937 0.0000000 0.0000000 0.00000000 0.00000000
## 1938 0.0000000 0.0000000 0.00000000 0.00000000
## 1939 0.0000000 0.0000000 0.00000000 0.00000000
## 1940 0.0000000 0.0000000 0.00000000 0.00000000
## 1941 0.0000000 0.0000000 0.00000000 0.00000000
## 1942 0.0000000 0.0000000 0.00000000 0.00000000
## 1943 0.0000000 0.0000000 0.00000000 0.00000000
## 1944 0.0000000 0.0000000 0.00000000 0.00000000
## 1945 0.3027179 0.0000000 0.14285714 0.14285714
## 1946 0.3027179 0.0000000 0.14285714 0.14285714
## 1947 0.3027179 0.0000000 0.14285714 0.14285714
## 1948 0.3027179 0.0000000 0.14285714 0.14285714
## 1949 0.3027179 0.0000000 0.14285714 0.14285714
## 1950 0.3027179 0.0000000 0.14285714 0.14285714
## 1951 0.3027179 0.0000000 0.14285714 0.14285714
## 1952 0.3027179 0.0000000 0.14285714 0.14285714
## 1953 0.3027179 0.0000000 0.14285714 0.14285714
## 1954 0.3027179 0.0000000 0.14285714 0.14285714
## 1955 0.3027179 0.0000000 0.14285714 0.14285714
## 1956 0.3027179 0.0000000 0.14285714 0.14285714
## 1957 0.3027179 0.0000000 0.14285714 0.14285714
## 1958 0.3027179 0.0000000 0.14285714 0.14285714
## 1959 0.3027179 0.0000000 0.14285714 0.14285714
## 1960 0.3027179 0.0000000 0.14285714 0.14285714
## 1961 0.3027179 0.0000000 0.14285714 0.14285714
## 1962 0.3027179 0.0000000 0.14285714 0.14285714
## 1963 0.3027179 0.0000000 0.14285714 0.14285714
## 1964 0.3027179 0.0000000 0.14285714 0.14285714
## 1965 0.3027179 0.0000000 0.14285714 0.14285714
## 1966 0.3027179 0.0000000 0.14285714 0.14285714
## 1967 0.3027179 0.0000000 0.14285714 0.14285714
## 1968 0.3027179 0.0000000 0.14285714 0.14285714
## 1969 0.3534255 0.0000000 0.14285714 0.14285714
## 1970 0.3534255 0.0000000 0.14285714 0.14285714
## 1971 0.3534255 0.0000000 0.14285714 0.14285714
## 1972 0.3534255 0.0000000 0.14285714 0.14285714
## 1973 0.3534255 0.0000000 0.14285714 0.14285714
## 1974 0.3534255 0.0000000 0.14285714 0.14285714
## 1975 0.3534255 0.0000000 0.14285714 0.14285714
## 1976 0.3534255 0.0000000 0.14285714 0.14285714
## 1977 0.3534255 0.0000000 0.14285714 0.14285714
## 1978 0.3534255 0.0000000 0.14285714 0.14285714
## 1979 0.3534255 0.0000000 0.14285714 0.14285714
## 1980 0.3534255 0.0000000 0.14285714 0.14285714
## 1981 0.3534255 0.0000000 0.14285714 0.14285714
## 1982 0.3534255 0.0000000 0.14285714 0.14285714
## 1983 0.3534255 0.0000000 0.14285714 0.14285714
## 1984 0.3534255 0.0000000 0.14285714 0.14285714
## 1985 0.3534255 0.0000000 0.14285714 0.14285714
## 1986 0.3534255 0.0000000 0.14285714 0.14285714
## 1987 0.3534255 0.0000000 0.14285714 0.14285714
## 1988 0.3534255 0.0000000 0.14285714 0.14285714
## 1989 0.3534255 0.0000000 0.14285714 0.14285714
## 1990 0.3534255 0.0000000 0.14285714 0.14285714
## 1991 0.3534255 0.0000000 0.14285714 0.14285714
## 1992 0.3534255 0.0000000 0.14285714 0.14285714
## 1993 0.5300870 0.0000000 0.33333333 0.33333333
## 1994 0.5300870 0.0000000 0.33333333 0.33333333
## 1995 0.5300870 0.0000000 0.33333333 0.33333333
## 1996 0.5300870 0.0000000 0.33333333 0.33333333
## 1997 0.5300870 0.0000000 0.33333333 0.33333333
## 1998 0.5300870 0.0000000 0.33333333 0.33333333
## 1999 0.5300870 0.0000000 0.33333333 0.33333333
## 2000 0.5300870 0.0000000 0.33333333 0.33333333
## 2001 0.5300870 0.0000000 0.33333333 0.33333333
## 2002 0.5300870 0.0000000 0.33333333 0.33333333
## 2003 0.5300870 0.0000000 0.33333333 0.33333333
## 2004 0.5300870 0.0000000 0.33333333 0.33333333
## 2005 0.5300870 0.0000000 0.33333333 0.33333333
## 2006 0.5300870 0.0000000 0.33333333 0.33333333
## 2007 0.5300870 0.0000000 0.33333333 0.33333333
## 2008 0.5300870 0.0000000 0.33333333 0.33333333
## 2009 0.5300870 0.0000000 0.33333333 0.33333333
## 2010 0.5300870 0.0000000 0.33333333 0.33333333
## 2011 0.5300870 0.0000000 0.33333333 0.33333333
## 2012 0.5300870 0.0000000 0.33333333 0.33333333
## 2013 0.5300870 0.0000000 0.33333333 0.33333333
## 2014 0.5300870 0.0000000 0.33333333 0.33333333
## 2015 0.5300870 0.0000000 0.33333333 0.33333333
## 2016 0.5300870 0.0000000 0.33333333 0.33333333
## 2017 0.5106878 0.2500000 0.25000000 0.50000000
## 2018 0.5106878 0.2500000 0.25000000 0.50000000
## 2019 0.5106878 0.2500000 0.25000000 0.50000000
## 2020 0.5106878 0.2500000 0.25000000 0.50000000
## 2021 0.5106878 0.2500000 0.25000000 0.50000000
## 2022 0.5106878 0.2500000 0.25000000 0.50000000
## 2023 0.5106878 0.2500000 0.25000000 0.50000000
## 2024 0.5106878 0.2500000 0.25000000 0.50000000
## 2025 0.5106878 0.2500000 0.25000000 0.50000000
## 2026 0.5106878 0.2500000 0.25000000 0.50000000
## 2027 0.5106878 0.2500000 0.25000000 0.50000000
## 2028 0.5106878 0.2500000 0.25000000 0.50000000
## 2029 0.5106878 0.2500000 0.25000000 0.50000000
## 2030 0.5106878 0.2500000 0.25000000 0.50000000
## 2031 0.5106878 0.2500000 0.25000000 0.50000000
## 2032 0.5106878 0.2500000 0.25000000 0.50000000
## 2033 0.5106878 0.2500000 0.25000000 0.50000000
## 2034 0.5106878 0.2500000 0.25000000 0.50000000
## 2035 0.5106878 0.2500000 0.25000000 0.50000000
## 2036 0.5106878 0.2500000 0.25000000 0.50000000
## 2037 0.5106878 0.2500000 0.25000000 0.50000000
## 2038 0.5106878 0.2500000 0.25000000 0.50000000
## 2039 0.5106878 0.2500000 0.25000000 0.50000000
## 2040 0.5106878 0.2500000 0.25000000 0.50000000
## 2041 0.7580645 0.5000000 0.25000000 0.75000000
## 2042 0.7580645 0.5000000 0.25000000 0.75000000
## 2043 0.7580645 0.5000000 0.25000000 0.75000000
## 2044 0.7580645 0.5000000 0.25000000 0.75000000
## 2045 0.7580645 0.5000000 0.25000000 0.75000000
## 2046 0.7580645 0.5000000 0.25000000 0.75000000
## 2047 0.7580645 0.5000000 0.25000000 0.75000000
## 2048 0.7580645 0.5000000 0.25000000 0.75000000
## 2049 0.7580645 0.5000000 0.25000000 0.75000000
## 2050 0.7580645 0.5000000 0.25000000 0.75000000
## 2051 0.7580645 0.5000000 0.25000000 0.75000000
## 2052 0.7580645 0.5000000 0.25000000 0.75000000
## 2053 0.7580645 0.5000000 0.25000000 0.75000000
## 2054 0.7580645 0.5000000 0.25000000 0.75000000
## 2055 0.7580645 0.5000000 0.25000000 0.75000000
## 2056 0.7580645 0.5000000 0.25000000 0.75000000
## 2057 0.7580645 0.5000000 0.25000000 0.75000000
## 2058 0.7580645 0.5000000 0.25000000 0.75000000
## 2059 0.7580645 0.5000000 0.25000000 0.75000000
## 2060 0.7580645 0.5000000 0.25000000 0.75000000
## 2061 0.7580645 0.5000000 0.25000000 0.75000000
## 2062 0.7580645 0.5000000 0.25000000 0.75000000
## 2063 0.7580645 0.5000000 0.25000000 0.75000000
## 2064 0.7580645 0.5000000 0.25000000 0.75000000
## 2065 0.8084387 0.0000000 0.40000000 0.40000000
## 2066 0.8084387 0.0000000 0.40000000 0.40000000
## 2067 0.8084387 0.0000000 0.40000000 0.40000000
## 2068 0.8084387 0.0000000 0.40000000 0.40000000
## 2069 0.8084387 0.0000000 0.40000000 0.40000000
## 2070 0.8084387 0.0000000 0.40000000 0.40000000
## 2071 0.8084387 0.0000000 0.40000000 0.40000000
## 2072 0.8084387 0.0000000 0.40000000 0.40000000
## 2073 0.8084387 0.0000000 0.40000000 0.40000000
## 2074 0.8084387 0.0000000 0.40000000 0.40000000
## 2075 0.8084387 0.0000000 0.40000000 0.40000000
## 2076 0.8084387 0.0000000 0.40000000 0.40000000
## 2077 0.8084387 0.0000000 0.40000000 0.40000000
## 2078 0.8084387 0.0000000 0.40000000 0.40000000
## 2079 0.8084387 0.0000000 0.40000000 0.40000000
## 2080 0.8084387 0.0000000 0.40000000 0.40000000
## 2081 0.8084387 0.0000000 0.40000000 0.40000000
## 2082 0.8084387 0.0000000 0.40000000 0.40000000
## 2083 0.8084387 0.0000000 0.40000000 0.40000000
## 2084 0.8084387 0.0000000 0.40000000 0.40000000
## 2085 0.8084387 0.0000000 0.40000000 0.40000000
## 2086 0.8084387 0.0000000 0.40000000 0.40000000
## 2087 0.8084387 0.0000000 0.40000000 0.40000000
## 2088 0.8084387 0.0000000 0.40000000 0.40000000
## 2089 0.8082902 0.5000000 0.31818182 0.81818182
## 2090 0.8082902 0.5000000 0.31818182 0.81818182
## 2091 0.8082902 0.5000000 0.31818182 0.81818182
## 2092 0.8082902 0.5000000 0.31818182 0.81818182
## 2093 0.8082902 0.5000000 0.31818182 0.81818182
## 2094 0.8082902 0.5000000 0.31818182 0.81818182
## 2095 0.8082902 0.5000000 0.31818182 0.81818182
## 2096 0.8082902 0.5000000 0.31818182 0.81818182
## 2097 0.8082902 0.5000000 0.31818182 0.81818182
## 2098 0.8082902 0.5000000 0.31818182 0.81818182
## 2099 0.8082902 0.5000000 0.31818182 0.81818182
## 2100 0.8082902 0.5000000 0.31818182 0.81818182
## 2101 0.8082902 0.5000000 0.31818182 0.81818182
## 2102 0.8082902 0.5000000 0.31818182 0.81818182
## 2103 0.8082902 0.5000000 0.31818182 0.81818182
## 2104 0.8082902 0.5000000 0.31818182 0.81818182
## 2105 0.8082902 0.5000000 0.31818182 0.81818182
## 2106 0.8082902 0.5000000 0.31818182 0.81818182
## 2107 0.8082902 0.5000000 0.31818182 0.81818182
## 2108 0.8082902 0.5000000 0.31818182 0.81818182
## 2109 0.8082902 0.5000000 0.31818182 0.81818182
## 2110 0.8082902 0.5000000 0.31818182 0.81818182
## 2111 0.8082902 0.5000000 0.31818182 0.81818182
## 2112 0.8082902 0.5000000 0.31818182 0.81818182
## 2113 0.0000000 0.0000000 0.00000000 0.00000000
## 2114 0.0000000 0.0000000 0.00000000 0.00000000
## 2115 0.0000000 0.0000000 0.00000000 0.00000000
## 2116 0.0000000 0.0000000 0.00000000 0.00000000
## 2117 0.0000000 0.0000000 0.00000000 0.00000000
## 2118 0.0000000 0.0000000 0.00000000 0.00000000
## 2119 0.0000000 0.0000000 0.00000000 0.00000000
## 2120 0.0000000 0.0000000 0.00000000 0.00000000
## 2121 0.0000000 0.0000000 0.00000000 0.00000000
## 2122 0.0000000 0.0000000 0.00000000 0.00000000
## 2123 0.0000000 0.0000000 0.00000000 0.00000000
## 2124 0.0000000 0.0000000 0.00000000 0.00000000
## 2125 0.0000000 0.0000000 0.00000000 0.00000000
## 2126 0.0000000 0.0000000 0.00000000 0.00000000
## 2127 0.0000000 0.0000000 0.00000000 0.00000000
## 2128 0.0000000 0.0000000 0.00000000 0.00000000
## 2129 0.0000000 0.0000000 0.00000000 0.00000000
## 2130 0.0000000 0.0000000 0.00000000 0.00000000
## 2131 0.0000000 0.0000000 0.00000000 0.00000000
## 2132 0.0000000 0.0000000 0.00000000 0.00000000
## 2133 0.0000000 0.0000000 0.00000000 0.00000000
## 2134 0.0000000 0.0000000 0.00000000 0.00000000
## 2135 0.0000000 0.0000000 0.00000000 0.00000000
## 2136 0.0000000 0.0000000 0.00000000 0.00000000
## 2137 0.4274862 0.1666667 0.16666667 0.33333333
## 2138 0.4274862 0.1666667 0.16666667 0.33333333
## 2139 0.4274862 0.1666667 0.16666667 0.33333333
## 2140 0.4274862 0.1666667 0.16666667 0.33333333
## 2141 0.4274862 0.1666667 0.16666667 0.33333333
## 2142 0.4274862 0.1666667 0.16666667 0.33333333
## 2143 0.4274862 0.1666667 0.16666667 0.33333333
## 2144 0.4274862 0.1666667 0.16666667 0.33333333
## 2145 0.4274862 0.1666667 0.16666667 0.33333333
## 2146 0.4274862 0.1666667 0.16666667 0.33333333
## 2147 0.4274862 0.1666667 0.16666667 0.33333333
## 2148 0.4274862 0.1666667 0.16666667 0.33333333
## 2149 0.4274862 0.1666667 0.16666667 0.33333333
## 2150 0.4274862 0.1666667 0.16666667 0.33333333
## 2151 0.4274862 0.1666667 0.16666667 0.33333333
## 2152 0.4274862 0.1666667 0.16666667 0.33333333
## 2153 0.4274862 0.1666667 0.16666667 0.33333333
## 2154 0.4274862 0.1666667 0.16666667 0.33333333
## 2155 0.4274862 0.1666667 0.16666667 0.33333333
## 2156 0.4274862 0.1666667 0.16666667 0.33333333
## 2157 0.4274862 0.1666667 0.16666667 0.33333333
## 2158 0.4274862 0.1666667 0.16666667 0.33333333
## 2159 0.4274862 0.1666667 0.16666667 0.33333333
## 2160 0.4274862 0.1666667 0.16666667 0.33333333
## 2161 0.1717331 0.0000000 0.09090909 0.09090909
## 2162 0.1717331 0.0000000 0.09090909 0.09090909
## 2163 0.1717331 0.0000000 0.09090909 0.09090909
## 2164 0.1717331 0.0000000 0.09090909 0.09090909
## 2165 0.1717331 0.0000000 0.09090909 0.09090909
## 2166 0.1717331 0.0000000 0.09090909 0.09090909
## 2167 0.1717331 0.0000000 0.09090909 0.09090909
## 2168 0.1717331 0.0000000 0.09090909 0.09090909
## 2169 0.1717331 0.0000000 0.09090909 0.09090909
## 2170 0.1717331 0.0000000 0.09090909 0.09090909
## 2171 0.1717331 0.0000000 0.09090909 0.09090909
## 2172 0.1717331 0.0000000 0.09090909 0.09090909
## 2173 0.1717331 0.0000000 0.09090909 0.09090909
## 2174 0.1717331 0.0000000 0.09090909 0.09090909
## 2175 0.1717331 0.0000000 0.09090909 0.09090909
## 2176 0.1717331 0.0000000 0.09090909 0.09090909
## 2177 0.1717331 0.0000000 0.09090909 0.09090909
## 2178 0.1717331 0.0000000 0.09090909 0.09090909
## 2179 0.1717331 0.0000000 0.09090909 0.09090909
## 2180 0.1717331 0.0000000 0.09090909 0.09090909
## 2181 0.1717331 0.0000000 0.09090909 0.09090909
## 2182 0.1717331 0.0000000 0.09090909 0.09090909
## 2183 0.1717331 0.0000000 0.09090909 0.09090909
## 2184 0.1717331 0.0000000 0.09090909 0.09090909
## 2185 0.4019640 0.0000000 0.33333333 0.33333333
## 2186 0.4019640 0.0000000 0.33333333 0.33333333
## 2187 0.4019640 0.0000000 0.33333333 0.33333333
## 2188 0.4019640 0.0000000 0.33333333 0.33333333
## 2189 0.4019640 0.0000000 0.33333333 0.33333333
## 2190 0.4019640 0.0000000 0.33333333 0.33333333
## 2191 0.4019640 0.0000000 0.33333333 0.33333333
## 2192 0.4019640 0.0000000 0.33333333 0.33333333
## 2193 0.4019640 0.0000000 0.33333333 0.33333333
## 2194 0.4019640 0.0000000 0.33333333 0.33333333
## 2195 0.4019640 0.0000000 0.33333333 0.33333333
## 2196 0.4019640 0.0000000 0.33333333 0.33333333
## 2197 0.4019640 0.0000000 0.33333333 0.33333333
## 2198 0.4019640 0.0000000 0.33333333 0.33333333
## 2199 0.4019640 0.0000000 0.33333333 0.33333333
## 2200 0.4019640 0.0000000 0.33333333 0.33333333
## 2201 0.4019640 0.0000000 0.33333333 0.33333333
## 2202 0.4019640 0.0000000 0.33333333 0.33333333
## 2203 0.4019640 0.0000000 0.33333333 0.33333333
## 2204 0.4019640 0.0000000 0.33333333 0.33333333
## 2205 0.4019640 0.0000000 0.33333333 0.33333333
## 2206 0.4019640 0.0000000 0.33333333 0.33333333
## 2207 0.4019640 0.0000000 0.33333333 0.33333333
## 2208 0.4019640 0.0000000 0.33333333 0.33333333
## 2209 0.3756846 0.2500000 0.08333333 0.33333333
## 2210 0.3756846 0.2500000 0.08333333 0.33333333
## 2211 0.3756846 0.2500000 0.08333333 0.33333333
## 2212 0.3756846 0.2500000 0.08333333 0.33333333
## 2213 0.3756846 0.2500000 0.08333333 0.33333333
## 2214 0.3756846 0.2500000 0.08333333 0.33333333
## 2215 0.3756846 0.2500000 0.08333333 0.33333333
## 2216 0.3756846 0.2500000 0.08333333 0.33333333
## 2217 0.3756846 0.2500000 0.08333333 0.33333333
## 2218 0.3756846 0.2500000 0.08333333 0.33333333
## 2219 0.3756846 0.2500000 0.08333333 0.33333333
## 2220 0.3756846 0.2500000 0.08333333 0.33333333
## 2221 0.3756846 0.2500000 0.08333333 0.33333333
## 2222 0.3756846 0.2500000 0.08333333 0.33333333
## 2223 0.3756846 0.2500000 0.08333333 0.33333333
## 2224 0.3756846 0.2500000 0.08333333 0.33333333
## 2225 0.3756846 0.2500000 0.08333333 0.33333333
## 2226 0.3756846 0.2500000 0.08333333 0.33333333
## 2227 0.3756846 0.2500000 0.08333333 0.33333333
## 2228 0.3756846 0.2500000 0.08333333 0.33333333
## 2229 0.3756846 0.2500000 0.08333333 0.33333333
## 2230 0.3756846 0.2500000 0.08333333 0.33333333
## 2231 0.3756846 0.2500000 0.08333333 0.33333333
## 2232 0.3756846 0.2500000 0.08333333 0.33333333
## 2233 0.7278202 0.0000000 0.60000000 0.60000000
## 2234 0.7278202 0.0000000 0.60000000 0.60000000
## 2235 0.7278202 0.0000000 0.60000000 0.60000000
## 2236 0.7278202 0.0000000 0.60000000 0.60000000
## 2237 0.7278202 0.0000000 0.60000000 0.60000000
## 2238 0.7278202 0.0000000 0.60000000 0.60000000
## 2239 0.7278202 0.0000000 0.60000000 0.60000000
## 2240 0.7278202 0.0000000 0.60000000 0.60000000
## 2241 0.7278202 0.0000000 0.60000000 0.60000000
## 2242 0.7278202 0.0000000 0.60000000 0.60000000
## 2243 0.7278202 0.0000000 0.60000000 0.60000000
## 2244 0.7278202 0.0000000 0.60000000 0.60000000
## 2245 0.7278202 0.0000000 0.60000000 0.60000000
## 2246 0.7278202 0.0000000 0.60000000 0.60000000
## 2247 0.7278202 0.0000000 0.60000000 0.60000000
## 2248 0.7278202 0.0000000 0.60000000 0.60000000
## 2249 0.7278202 0.0000000 0.60000000 0.60000000
## 2250 0.7278202 0.0000000 0.60000000 0.60000000
## 2251 0.7278202 0.0000000 0.60000000 0.60000000
## 2252 0.7278202 0.0000000 0.60000000 0.60000000
## 2253 0.7278202 0.0000000 0.60000000 0.60000000
## 2254 0.7278202 0.0000000 0.60000000 0.60000000
## 2255 0.7278202 0.0000000 0.60000000 0.60000000
## 2256 0.7278202 0.0000000 0.60000000 0.60000000
## 2257 0.8397072 0.0000000 0.40000000 0.40000000
## 2258 0.8397072 0.0000000 0.40000000 0.40000000
## 2259 0.8397072 0.0000000 0.40000000 0.40000000
## 2260 0.8397072 0.0000000 0.40000000 0.40000000
## 2261 0.8397072 0.0000000 0.40000000 0.40000000
## 2262 0.8397072 0.0000000 0.40000000 0.40000000
## 2263 0.8397072 0.0000000 0.40000000 0.40000000
## 2264 0.8397072 0.0000000 0.40000000 0.40000000
## 2265 0.8397072 0.0000000 0.40000000 0.40000000
## 2266 0.8397072 0.0000000 0.40000000 0.40000000
## 2267 0.8397072 0.0000000 0.40000000 0.40000000
## 2268 0.8397072 0.0000000 0.40000000 0.40000000
## 2269 0.8397072 0.0000000 0.40000000 0.40000000
## 2270 0.8397072 0.0000000 0.40000000 0.40000000
## 2271 0.8397072 0.0000000 0.40000000 0.40000000
## 2272 0.8397072 0.0000000 0.40000000 0.40000000
## 2273 0.8397072 0.0000000 0.40000000 0.40000000
## 2274 0.8397072 0.0000000 0.40000000 0.40000000
## 2275 0.8397072 0.0000000 0.40000000 0.40000000
## 2276 0.8397072 0.0000000 0.40000000 0.40000000
## 2277 0.8397072 0.0000000 0.40000000 0.40000000
## 2278 0.8397072 0.0000000 0.40000000 0.40000000
## 2279 0.8397072 0.0000000 0.40000000 0.40000000
## 2280 0.8397072 0.0000000 0.40000000 0.40000000
## 2281 0.7597403 0.5000000 0.27777778 0.77777778
## 2282 0.7597403 0.5000000 0.27777778 0.77777778
## 2283 0.7597403 0.5000000 0.27777778 0.77777778
## 2284 0.7597403 0.5000000 0.27777778 0.77777778
## 2285 0.7597403 0.5000000 0.27777778 0.77777778
## 2286 0.7597403 0.5000000 0.27777778 0.77777778
## 2287 0.7597403 0.5000000 0.27777778 0.77777778
## 2288 0.7597403 0.5000000 0.27777778 0.77777778
## 2289 0.7597403 0.5000000 0.27777778 0.77777778
## 2290 0.7597403 0.5000000 0.27777778 0.77777778
## 2291 0.7597403 0.5000000 0.27777778 0.77777778
## 2292 0.7597403 0.5000000 0.27777778 0.77777778
## 2293 0.7597403 0.5000000 0.27777778 0.77777778
## 2294 0.7597403 0.5000000 0.27777778 0.77777778
## 2295 0.7597403 0.5000000 0.27777778 0.77777778
## 2296 0.7597403 0.5000000 0.27777778 0.77777778
## 2297 0.7597403 0.5000000 0.27777778 0.77777778
## 2298 0.7597403 0.5000000 0.27777778 0.77777778
## 2299 0.7597403 0.5000000 0.27777778 0.77777778
## 2300 0.7597403 0.5000000 0.27777778 0.77777778
## 2301 0.7597403 0.5000000 0.27777778 0.77777778
## 2302 0.7597403 0.5000000 0.27777778 0.77777778
## 2303 0.7597403 0.5000000 0.27777778 0.77777778
## 2304 0.7597403 0.5000000 0.27777778 0.77777778
## 2305 0.0000000 0.0000000 0.00000000 0.00000000
## 2306 0.0000000 0.0000000 0.00000000 0.00000000
## 2307 0.0000000 0.0000000 0.00000000 0.00000000
## 2308 0.0000000 0.0000000 0.00000000 0.00000000
## 2309 0.0000000 0.0000000 0.00000000 0.00000000
## 2310 0.0000000 0.0000000 0.00000000 0.00000000
## 2311 0.0000000 0.0000000 0.00000000 0.00000000
## 2312 0.0000000 0.0000000 0.00000000 0.00000000
## 2313 0.0000000 0.0000000 0.00000000 0.00000000
## 2314 0.0000000 0.0000000 0.00000000 0.00000000
## 2315 0.0000000 0.0000000 0.00000000 0.00000000
## 2316 0.0000000 0.0000000 0.00000000 0.00000000
## 2317 0.0000000 0.0000000 0.00000000 0.00000000
## 2318 0.0000000 0.0000000 0.00000000 0.00000000
## 2319 0.0000000 0.0000000 0.00000000 0.00000000
## 2320 0.0000000 0.0000000 0.00000000 0.00000000
## 2321 0.0000000 0.0000000 0.00000000 0.00000000
## 2322 0.0000000 0.0000000 0.00000000 0.00000000
## 2323 0.0000000 0.0000000 0.00000000 0.00000000
## 2324 0.0000000 0.0000000 0.00000000 0.00000000
## 2325 0.0000000 0.0000000 0.00000000 0.00000000
## 2326 0.0000000 0.0000000 0.00000000 0.00000000
## 2327 0.0000000 0.0000000 0.00000000 0.00000000
## 2328 0.0000000 0.0000000 0.00000000 0.00000000
## 2329 0.2390555 0.1666667 0.16666667 0.33333333
## 2330 0.2390555 0.1666667 0.16666667 0.33333333
## 2331 0.2390555 0.1666667 0.16666667 0.33333333
## 2332 0.2390555 0.1666667 0.16666667 0.33333333
## 2333 0.2390555 0.1666667 0.16666667 0.33333333
## 2334 0.2390555 0.1666667 0.16666667 0.33333333
## 2335 0.2390555 0.1666667 0.16666667 0.33333333
## 2336 0.2390555 0.1666667 0.16666667 0.33333333
## 2337 0.2390555 0.1666667 0.16666667 0.33333333
## 2338 0.2390555 0.1666667 0.16666667 0.33333333
## 2339 0.2390555 0.1666667 0.16666667 0.33333333
## 2340 0.2390555 0.1666667 0.16666667 0.33333333
## 2341 0.2390555 0.1666667 0.16666667 0.33333333
## 2342 0.2390555 0.1666667 0.16666667 0.33333333
## 2343 0.2390555 0.1666667 0.16666667 0.33333333
## 2344 0.2390555 0.1666667 0.16666667 0.33333333
## 2345 0.2390555 0.1666667 0.16666667 0.33333333
## 2346 0.2390555 0.1666667 0.16666667 0.33333333
## 2347 0.2390555 0.1666667 0.16666667 0.33333333
## 2348 0.2390555 0.1666667 0.16666667 0.33333333
## 2349 0.2390555 0.1666667 0.16666667 0.33333333
## 2350 0.2390555 0.1666667 0.16666667 0.33333333
## 2351 0.2390555 0.1666667 0.16666667 0.33333333
## 2352 0.2390555 0.1666667 0.16666667 0.33333333
## 2353 0.2484533 0.0000000 0.20000000 0.20000000
## 2354 0.2484533 0.0000000 0.20000000 0.20000000
## 2355 0.2484533 0.0000000 0.20000000 0.20000000
## 2356 0.2484533 0.0000000 0.20000000 0.20000000
## 2357 0.2484533 0.0000000 0.20000000 0.20000000
## 2358 0.2484533 0.0000000 0.20000000 0.20000000
## 2359 0.2484533 0.0000000 0.20000000 0.20000000
## 2360 0.2484533 0.0000000 0.20000000 0.20000000
## 2361 0.2484533 0.0000000 0.20000000 0.20000000
## 2362 0.2484533 0.0000000 0.20000000 0.20000000
## 2363 0.2484533 0.0000000 0.20000000 0.20000000
## 2364 0.2484533 0.0000000 0.20000000 0.20000000
## 2365 0.2484533 0.0000000 0.20000000 0.20000000
## 2366 0.2484533 0.0000000 0.20000000 0.20000000
## 2367 0.2484533 0.0000000 0.20000000 0.20000000
## 2368 0.2484533 0.0000000 0.20000000 0.20000000
## 2369 0.2484533 0.0000000 0.20000000 0.20000000
## 2370 0.2484533 0.0000000 0.20000000 0.20000000
## 2371 0.2484533 0.0000000 0.20000000 0.20000000
## 2372 0.2484533 0.0000000 0.20000000 0.20000000
## 2373 0.2484533 0.0000000 0.20000000 0.20000000
## 2374 0.2484533 0.0000000 0.20000000 0.20000000
## 2375 0.2484533 0.0000000 0.20000000 0.20000000
## 2376 0.2484533 0.0000000 0.20000000 0.20000000
## 2377 0.4900944 0.0000000 0.38461538 0.38461538
## 2378 0.4900944 0.0000000 0.38461538 0.38461538
## 2379 0.4900944 0.0000000 0.38461538 0.38461538
## 2380 0.4900944 0.0000000 0.38461538 0.38461538
## 2381 0.4900944 0.0000000 0.38461538 0.38461538
## 2382 0.4900944 0.0000000 0.38461538 0.38461538
## 2383 0.4900944 0.0000000 0.38461538 0.38461538
## 2384 0.4900944 0.0000000 0.38461538 0.38461538
## 2385 0.4900944 0.0000000 0.38461538 0.38461538
## 2386 0.4900944 0.0000000 0.38461538 0.38461538
## 2387 0.4900944 0.0000000 0.38461538 0.38461538
## 2388 0.4900944 0.0000000 0.38461538 0.38461538
## 2389 0.4900944 0.0000000 0.38461538 0.38461538
## 2390 0.4900944 0.0000000 0.38461538 0.38461538
## 2391 0.4900944 0.0000000 0.38461538 0.38461538
## 2392 0.4900944 0.0000000 0.38461538 0.38461538
## 2393 0.4900944 0.0000000 0.38461538 0.38461538
## 2394 0.4900944 0.0000000 0.38461538 0.38461538
## 2395 0.4900944 0.0000000 0.38461538 0.38461538
## 2396 0.4900944 0.0000000 0.38461538 0.38461538
## 2397 0.4900944 0.0000000 0.38461538 0.38461538
## 2398 0.4900944 0.0000000 0.38461538 0.38461538
## 2399 0.4900944 0.0000000 0.38461538 0.38461538
## 2400 0.4900944 0.0000000 0.38461538 0.38461538
## 2401 0.4155353 0.2500000 0.20454545 0.45454545
## 2402 0.4155353 0.2500000 0.20454545 0.45454545
## 2403 0.4155353 0.2500000 0.20454545 0.45454545
## 2404 0.4155353 0.2500000 0.20454545 0.45454545
## 2405 0.4155353 0.2500000 0.20454545 0.45454545
## 2406 0.4155353 0.2500000 0.20454545 0.45454545
## 2407 0.4155353 0.2500000 0.20454545 0.45454545
## 2408 0.4155353 0.2500000 0.20454545 0.45454545
## 2409 0.4155353 0.2500000 0.20454545 0.45454545
## 2410 0.4155353 0.2500000 0.20454545 0.45454545
## 2411 0.4155353 0.2500000 0.20454545 0.45454545
## 2412 0.4155353 0.2500000 0.20454545 0.45454545
## 2413 0.4155353 0.2500000 0.20454545 0.45454545
## 2414 0.4155353 0.2500000 0.20454545 0.45454545
## 2415 0.4155353 0.2500000 0.20454545 0.45454545
## 2416 0.4155353 0.2500000 0.20454545 0.45454545
## 2417 0.4155353 0.2500000 0.20454545 0.45454545
## 2418 0.4155353 0.2500000 0.20454545 0.45454545
## 2419 0.4155353 0.2500000 0.20454545 0.45454545
## 2420 0.4155353 0.2500000 0.20454545 0.45454545
## 2421 0.4155353 0.2500000 0.20454545 0.45454545
## 2422 0.4155353 0.2500000 0.20454545 0.45454545
## 2423 0.4155353 0.2500000 0.20454545 0.45454545
## 2424 0.4155353 0.2500000 0.20454545 0.45454545
## 2425 0.7878675 0.5000000 0.25000000 0.75000000
## 2426 0.7878675 0.5000000 0.25000000 0.75000000
## 2427 0.7878675 0.5000000 0.25000000 0.75000000
## 2428 0.7878675 0.5000000 0.25000000 0.75000000
## 2429 0.7878675 0.5000000 0.25000000 0.75000000
## 2430 0.7878675 0.5000000 0.25000000 0.75000000
## 2431 0.7878675 0.5000000 0.25000000 0.75000000
## 2432 0.7878675 0.5000000 0.25000000 0.75000000
## 2433 0.7878675 0.5000000 0.25000000 0.75000000
## 2434 0.7878675 0.5000000 0.25000000 0.75000000
## 2435 0.7878675 0.5000000 0.25000000 0.75000000
## 2436 0.7878675 0.5000000 0.25000000 0.75000000
## 2437 0.7878675 0.5000000 0.25000000 0.75000000
## 2438 0.7878675 0.5000000 0.25000000 0.75000000
## 2439 0.7878675 0.5000000 0.25000000 0.75000000
## 2440 0.7878675 0.5000000 0.25000000 0.75000000
## 2441 0.7878675 0.5000000 0.25000000 0.75000000
## 2442 0.7878675 0.5000000 0.25000000 0.75000000
## 2443 0.7878675 0.5000000 0.25000000 0.75000000
## 2444 0.7878675 0.5000000 0.25000000 0.75000000
## 2445 0.7878675 0.5000000 0.25000000 0.75000000
## 2446 0.7878675 0.5000000 0.25000000 0.75000000
## 2447 0.7878675 0.5000000 0.25000000 0.75000000
## 2448 0.7878675 0.5000000 0.25000000 0.75000000
## 2449 0.7909868 0.0000000 0.45454545 0.45454545
## 2450 0.7909868 0.0000000 0.45454545 0.45454545
## 2451 0.7909868 0.0000000 0.45454545 0.45454545
## 2452 0.7909868 0.0000000 0.45454545 0.45454545
## 2453 0.7909868 0.0000000 0.45454545 0.45454545
## 2454 0.7909868 0.0000000 0.45454545 0.45454545
## 2455 0.7909868 0.0000000 0.45454545 0.45454545
## 2456 0.7909868 0.0000000 0.45454545 0.45454545
## 2457 0.7909868 0.0000000 0.45454545 0.45454545
## 2458 0.7909868 0.0000000 0.45454545 0.45454545
## 2459 0.7909868 0.0000000 0.45454545 0.45454545
## 2460 0.7909868 0.0000000 0.45454545 0.45454545
## 2461 0.7909868 0.0000000 0.45454545 0.45454545
## 2462 0.7909868 0.0000000 0.45454545 0.45454545
## 2463 0.7909868 0.0000000 0.45454545 0.45454545
## 2464 0.7909868 0.0000000 0.45454545 0.45454545
## 2465 0.7909868 0.0000000 0.45454545 0.45454545
## 2466 0.7909868 0.0000000 0.45454545 0.45454545
## 2467 0.7909868 0.0000000 0.45454545 0.45454545
## 2468 0.7909868 0.0000000 0.45454545 0.45454545
## 2469 0.7909868 0.0000000 0.45454545 0.45454545
## 2470 0.7909868 0.0000000 0.45454545 0.45454545
## 2471 0.7909868 0.0000000 0.45454545 0.45454545
## 2472 0.7909868 0.0000000 0.45454545 0.45454545
## 2473 0.8452490 0.5000000 0.27777778 0.77777778
## 2474 0.8452490 0.5000000 0.27777778 0.77777778
## 2475 0.8452490 0.5000000 0.27777778 0.77777778
## 2476 0.8452490 0.5000000 0.27777778 0.77777778
## 2477 0.8452490 0.5000000 0.27777778 0.77777778
## 2478 0.8452490 0.5000000 0.27777778 0.77777778
## 2479 0.8452490 0.5000000 0.27777778 0.77777778
## 2480 0.8452490 0.5000000 0.27777778 0.77777778
## 2481 0.8452490 0.5000000 0.27777778 0.77777778
## 2482 0.8452490 0.5000000 0.27777778 0.77777778
## 2483 0.8452490 0.5000000 0.27777778 0.77777778
## 2484 0.8452490 0.5000000 0.27777778 0.77777778
## 2485 0.8452490 0.5000000 0.27777778 0.77777778
## 2486 0.8452490 0.5000000 0.27777778 0.77777778
## 2487 0.8452490 0.5000000 0.27777778 0.77777778
## 2488 0.8452490 0.5000000 0.27777778 0.77777778
## 2489 0.8452490 0.5000000 0.27777778 0.77777778
## 2490 0.8452490 0.5000000 0.27777778 0.77777778
## 2491 0.8452490 0.5000000 0.27777778 0.77777778
## 2492 0.8452490 0.5000000 0.27777778 0.77777778
## 2493 0.8452490 0.5000000 0.27777778 0.77777778
## 2494 0.8452490 0.5000000 0.27777778 0.77777778
## 2495 0.8452490 0.5000000 0.27777778 0.77777778
## 2496 0.8452490 0.5000000 0.27777778 0.77777778
## 2497 0.0000000 0.0000000 0.00000000 0.00000000
## 2498 0.0000000 0.0000000 0.00000000 0.00000000
## 2499 0.0000000 0.0000000 0.00000000 0.00000000
## 2500 0.0000000 0.0000000 0.00000000 0.00000000
## 2501 0.0000000 0.0000000 0.00000000 0.00000000
## 2502 0.0000000 0.0000000 0.00000000 0.00000000
## 2503 0.0000000 0.0000000 0.00000000 0.00000000
## 2504 0.0000000 0.0000000 0.00000000 0.00000000
## 2505 0.0000000 0.0000000 0.00000000 0.00000000
## 2506 0.0000000 0.0000000 0.00000000 0.00000000
## 2507 0.0000000 0.0000000 0.00000000 0.00000000
## 2508 0.0000000 0.0000000 0.00000000 0.00000000
## 2509 0.0000000 0.0000000 0.00000000 0.00000000
## 2510 0.0000000 0.0000000 0.00000000 0.00000000
## 2511 0.0000000 0.0000000 0.00000000 0.00000000
## 2512 0.0000000 0.0000000 0.00000000 0.00000000
## 2513 0.0000000 0.0000000 0.00000000 0.00000000
## 2514 0.0000000 0.0000000 0.00000000 0.00000000
## 2515 0.0000000 0.0000000 0.00000000 0.00000000
## 2516 0.0000000 0.0000000 0.00000000 0.00000000
## 2517 0.0000000 0.0000000 0.00000000 0.00000000
## 2518 0.0000000 0.0000000 0.00000000 0.00000000
## 2519 0.0000000 0.0000000 0.00000000 0.00000000
## 2520 0.0000000 0.0000000 0.00000000 0.00000000
## 2521 0.2704892 0.0000000 0.07692308 0.07692308
## 2522 0.2704892 0.0000000 0.07692308 0.07692308
## 2523 0.2704892 0.0000000 0.07692308 0.07692308
## 2524 0.2704892 0.0000000 0.07692308 0.07692308
## 2525 0.2704892 0.0000000 0.07692308 0.07692308
## 2526 0.2704892 0.0000000 0.07692308 0.07692308
## 2527 0.2704892 0.0000000 0.07692308 0.07692308
## 2528 0.2704892 0.0000000 0.07692308 0.07692308
## 2529 0.2704892 0.0000000 0.07692308 0.07692308
## 2530 0.2704892 0.0000000 0.07692308 0.07692308
## 2531 0.2704892 0.0000000 0.07692308 0.07692308
## 2532 0.2704892 0.0000000 0.07692308 0.07692308
## 2533 0.2704892 0.0000000 0.07692308 0.07692308
## 2534 0.2704892 0.0000000 0.07692308 0.07692308
## 2535 0.2704892 0.0000000 0.07692308 0.07692308
## 2536 0.2704892 0.0000000 0.07692308 0.07692308
## 2537 0.2704892 0.0000000 0.07692308 0.07692308
## 2538 0.2704892 0.0000000 0.07692308 0.07692308
## 2539 0.2704892 0.0000000 0.07692308 0.07692308
## 2540 0.2704892 0.0000000 0.07692308 0.07692308
## 2541 0.2704892 0.0000000 0.07692308 0.07692308
## 2542 0.2704892 0.0000000 0.07692308 0.07692308
## 2543 0.2704892 0.0000000 0.07692308 0.07692308
## 2544 0.2704892 0.0000000 0.07692308 0.07692308
## 2545 0.3470454 0.0000000 0.14285714 0.14285714
## 2546 0.3470454 0.0000000 0.14285714 0.14285714
## 2547 0.3470454 0.0000000 0.14285714 0.14285714
## 2548 0.3470454 0.0000000 0.14285714 0.14285714
## 2549 0.3470454 0.0000000 0.14285714 0.14285714
## 2550 0.3470454 0.0000000 0.14285714 0.14285714
## 2551 0.3470454 0.0000000 0.14285714 0.14285714
## 2552 0.3470454 0.0000000 0.14285714 0.14285714
## 2553 0.3470454 0.0000000 0.14285714 0.14285714
## 2554 0.3470454 0.0000000 0.14285714 0.14285714
## 2555 0.3470454 0.0000000 0.14285714 0.14285714
## 2556 0.3470454 0.0000000 0.14285714 0.14285714
## 2557 0.3470454 0.0000000 0.14285714 0.14285714
## 2558 0.3470454 0.0000000 0.14285714 0.14285714
## 2559 0.3470454 0.0000000 0.14285714 0.14285714
## 2560 0.3470454 0.0000000 0.14285714 0.14285714
## 2561 0.3470454 0.0000000 0.14285714 0.14285714
## 2562 0.3470454 0.0000000 0.14285714 0.14285714
## 2563 0.3470454 0.0000000 0.14285714 0.14285714
## 2564 0.3470454 0.0000000 0.14285714 0.14285714
## 2565 0.3470454 0.0000000 0.14285714 0.14285714
## 2566 0.3470454 0.0000000 0.14285714 0.14285714
## 2567 0.3470454 0.0000000 0.14285714 0.14285714
## 2568 0.3470454 0.0000000 0.14285714 0.14285714
## 2569 0.1830536 0.2500000 0.15000000 0.40000000
## 2570 0.1830536 0.2500000 0.15000000 0.40000000
## 2571 0.1830536 0.2500000 0.15000000 0.40000000
## 2572 0.1830536 0.2500000 0.15000000 0.40000000
## 2573 0.1830536 0.2500000 0.15000000 0.40000000
## 2574 0.1830536 0.2500000 0.15000000 0.40000000
## 2575 0.1830536 0.2500000 0.15000000 0.40000000
## 2576 0.1830536 0.2500000 0.15000000 0.40000000
## 2577 0.1830536 0.2500000 0.15000000 0.40000000
## 2578 0.1830536 0.2500000 0.15000000 0.40000000
## 2579 0.1830536 0.2500000 0.15000000 0.40000000
## 2580 0.1830536 0.2500000 0.15000000 0.40000000
## 2581 0.1830536 0.2500000 0.15000000 0.40000000
## 2582 0.1830536 0.2500000 0.15000000 0.40000000
## 2583 0.1830536 0.2500000 0.15000000 0.40000000
## 2584 0.1830536 0.2500000 0.15000000 0.40000000
## 2585 0.1830536 0.2500000 0.15000000 0.40000000
## 2586 0.1830536 0.2500000 0.15000000 0.40000000
## 2587 0.1830536 0.2500000 0.15000000 0.40000000
## 2588 0.1830536 0.2500000 0.15000000 0.40000000
## 2589 0.1830536 0.2500000 0.15000000 0.40000000
## 2590 0.1830536 0.2500000 0.15000000 0.40000000
## 2591 0.1830536 0.2500000 0.15000000 0.40000000
## 2592 0.1830536 0.2500000 0.15000000 0.40000000
## 2593 0.4165868 0.2500000 0.15000000 0.40000000
## 2594 0.4165868 0.2500000 0.15000000 0.40000000
## 2595 0.4165868 0.2500000 0.15000000 0.40000000
## 2596 0.4165868 0.2500000 0.15000000 0.40000000
## 2597 0.4165868 0.2500000 0.15000000 0.40000000
## 2598 0.4165868 0.2500000 0.15000000 0.40000000
## 2599 0.4165868 0.2500000 0.15000000 0.40000000
## 2600 0.4165868 0.2500000 0.15000000 0.40000000
## 2601 0.4165868 0.2500000 0.15000000 0.40000000
## 2602 0.4165868 0.2500000 0.15000000 0.40000000
## 2603 0.4165868 0.2500000 0.15000000 0.40000000
## 2604 0.4165868 0.2500000 0.15000000 0.40000000
## 2605 0.4165868 0.2500000 0.15000000 0.40000000
## 2606 0.4165868 0.2500000 0.15000000 0.40000000
## 2607 0.4165868 0.2500000 0.15000000 0.40000000
## 2608 0.4165868 0.2500000 0.15000000 0.40000000
## 2609 0.4165868 0.2500000 0.15000000 0.40000000
## 2610 0.4165868 0.2500000 0.15000000 0.40000000
## 2611 0.4165868 0.2500000 0.15000000 0.40000000
## 2612 0.4165868 0.2500000 0.15000000 0.40000000
## 2613 0.4165868 0.2500000 0.15000000 0.40000000
## 2614 0.4165868 0.2500000 0.15000000 0.40000000
## 2615 0.4165868 0.2500000 0.15000000 0.40000000
## 2616 0.4165868 0.2500000 0.15000000 0.40000000
## 2617 0.6847345 0.5000000 0.21428571 0.71428571
## 2618 0.6847345 0.5000000 0.21428571 0.71428571
## 2619 0.6847345 0.5000000 0.21428571 0.71428571
## 2620 0.6847345 0.5000000 0.21428571 0.71428571
## 2621 0.6847345 0.5000000 0.21428571 0.71428571
## 2622 0.6847345 0.5000000 0.21428571 0.71428571
## 2623 0.6847345 0.5000000 0.21428571 0.71428571
## 2624 0.6847345 0.5000000 0.21428571 0.71428571
## 2625 0.6847345 0.5000000 0.21428571 0.71428571
## 2626 0.6847345 0.5000000 0.21428571 0.71428571
## 2627 0.6847345 0.5000000 0.21428571 0.71428571
## 2628 0.6847345 0.5000000 0.21428571 0.71428571
## 2629 0.6847345 0.5000000 0.21428571 0.71428571
## 2630 0.6847345 0.5000000 0.21428571 0.71428571
## 2631 0.6847345 0.5000000 0.21428571 0.71428571
## 2632 0.6847345 0.5000000 0.21428571 0.71428571
## 2633 0.6847345 0.5000000 0.21428571 0.71428571
## 2634 0.6847345 0.5000000 0.21428571 0.71428571
## 2635 0.6847345 0.5000000 0.21428571 0.71428571
## 2636 0.6847345 0.5000000 0.21428571 0.71428571
## 2637 0.6847345 0.5000000 0.21428571 0.71428571
## 2638 0.6847345 0.5000000 0.21428571 0.71428571
## 2639 0.6847345 0.5000000 0.21428571 0.71428571
## 2640 0.6847345 0.5000000 0.21428571 0.71428571
## 2641 0.6820631 0.3333333 0.22222222 0.55555556
## 2642 0.6820631 0.3333333 0.22222222 0.55555556
## 2643 0.6820631 0.3333333 0.22222222 0.55555556
## 2644 0.6820631 0.3333333 0.22222222 0.55555556
## 2645 0.6820631 0.3333333 0.22222222 0.55555556
## 2646 0.6820631 0.3333333 0.22222222 0.55555556
## 2647 0.6820631 0.3333333 0.22222222 0.55555556
## 2648 0.6820631 0.3333333 0.22222222 0.55555556
## 2649 0.6820631 0.3333333 0.22222222 0.55555556
## 2650 0.6820631 0.3333333 0.22222222 0.55555556
## 2651 0.6820631 0.3333333 0.22222222 0.55555556
## 2652 0.6820631 0.3333333 0.22222222 0.55555556
## 2653 0.6820631 0.3333333 0.22222222 0.55555556
## 2654 0.6820631 0.3333333 0.22222222 0.55555556
## 2655 0.6820631 0.3333333 0.22222222 0.55555556
## 2656 0.6820631 0.3333333 0.22222222 0.55555556
## 2657 0.6820631 0.3333333 0.22222222 0.55555556
## 2658 0.6820631 0.3333333 0.22222222 0.55555556
## 2659 0.6820631 0.3333333 0.22222222 0.55555556
## 2660 0.6820631 0.3333333 0.22222222 0.55555556
## 2661 0.6820631 0.3333333 0.22222222 0.55555556
## 2662 0.6820631 0.3333333 0.22222222 0.55555556
## 2663 0.6820631 0.3333333 0.22222222 0.55555556
## 2664 0.6820631 0.3333333 0.22222222 0.55555556
## 2665 0.5655391 0.5000000 0.21428571 0.71428571
## 2666 0.5655391 0.5000000 0.21428571 0.71428571
## 2667 0.5655391 0.5000000 0.21428571 0.71428571
## 2668 0.5655391 0.5000000 0.21428571 0.71428571
## 2669 0.5655391 0.5000000 0.21428571 0.71428571
## 2670 0.5655391 0.5000000 0.21428571 0.71428571
## 2671 0.5655391 0.5000000 0.21428571 0.71428571
## 2672 0.5655391 0.5000000 0.21428571 0.71428571
## 2673 0.5655391 0.5000000 0.21428571 0.71428571
## 2674 0.5655391 0.5000000 0.21428571 0.71428571
## 2675 0.5655391 0.5000000 0.21428571 0.71428571
## 2676 0.5655391 0.5000000 0.21428571 0.71428571
## 2677 0.5655391 0.5000000 0.21428571 0.71428571
## 2678 0.5655391 0.5000000 0.21428571 0.71428571
## 2679 0.5655391 0.5000000 0.21428571 0.71428571
## 2680 0.5655391 0.5000000 0.21428571 0.71428571
## 2681 0.5655391 0.5000000 0.21428571 0.71428571
## 2682 0.5655391 0.5000000 0.21428571 0.71428571
## 2683 0.5655391 0.5000000 0.21428571 0.71428571
## 2684 0.5655391 0.5000000 0.21428571 0.71428571
## 2685 0.5655391 0.5000000 0.21428571 0.71428571
## 2686 0.5655391 0.5000000 0.21428571 0.71428571
## 2687 0.5655391 0.5000000 0.21428571 0.71428571
## 2688 0.5655391 0.5000000 0.21428571 0.71428571
## 2689 0.0000000 0.0000000 0.00000000 0.00000000
## 2690 0.0000000 0.0000000 0.00000000 0.00000000
## 2691 0.0000000 0.0000000 0.00000000 0.00000000
## 2692 0.0000000 0.0000000 0.00000000 0.00000000
## 2693 0.0000000 0.0000000 0.00000000 0.00000000
## 2694 0.0000000 0.0000000 0.00000000 0.00000000
## 2695 0.0000000 0.0000000 0.00000000 0.00000000
## 2696 0.0000000 0.0000000 0.00000000 0.00000000
## 2697 0.0000000 0.0000000 0.00000000 0.00000000
## 2698 0.0000000 0.0000000 0.00000000 0.00000000
## 2699 0.0000000 0.0000000 0.00000000 0.00000000
## 2700 0.0000000 0.0000000 0.00000000 0.00000000
## 2701 0.0000000 0.0000000 0.00000000 0.00000000
## 2702 0.0000000 0.0000000 0.00000000 0.00000000
## 2703 0.0000000 0.0000000 0.00000000 0.00000000
## 2704 0.0000000 0.0000000 0.00000000 0.00000000
## 2705 0.0000000 0.0000000 0.00000000 0.00000000
## 2706 0.0000000 0.0000000 0.00000000 0.00000000
## 2707 0.0000000 0.0000000 0.00000000 0.00000000
## 2708 0.0000000 0.0000000 0.00000000 0.00000000
## 2709 0.0000000 0.0000000 0.00000000 0.00000000
## 2710 0.0000000 0.0000000 0.00000000 0.00000000
## 2711 0.0000000 0.0000000 0.00000000 0.00000000
## 2712 0.0000000 0.0000000 0.00000000 0.00000000
## 2713 0.5325091 0.0000000 0.20000000 0.20000000
## 2714 0.5325091 0.0000000 0.20000000 0.20000000
## 2715 0.5325091 0.0000000 0.20000000 0.20000000
## 2716 0.5325091 0.0000000 0.20000000 0.20000000
## 2717 0.5325091 0.0000000 0.20000000 0.20000000
## 2718 0.5325091 0.0000000 0.20000000 0.20000000
## 2719 0.5325091 0.0000000 0.20000000 0.20000000
## 2720 0.5325091 0.0000000 0.20000000 0.20000000
## 2721 0.5325091 0.0000000 0.20000000 0.20000000
## 2722 0.5325091 0.0000000 0.20000000 0.20000000
## 2723 0.5325091 0.0000000 0.20000000 0.20000000
## 2724 0.5325091 0.0000000 0.20000000 0.20000000
## 2725 0.5325091 0.0000000 0.20000000 0.20000000
## 2726 0.5325091 0.0000000 0.20000000 0.20000000
## 2727 0.5325091 0.0000000 0.20000000 0.20000000
## 2728 0.5325091 0.0000000 0.20000000 0.20000000
## 2729 0.5325091 0.0000000 0.20000000 0.20000000
## 2730 0.5325091 0.0000000 0.20000000 0.20000000
## 2731 0.5325091 0.0000000 0.20000000 0.20000000
## 2732 0.5325091 0.0000000 0.20000000 0.20000000
## 2733 0.5325091 0.0000000 0.20000000 0.20000000
## 2734 0.5325091 0.0000000 0.20000000 0.20000000
## 2735 0.5325091 0.0000000 0.20000000 0.20000000
## 2736 0.5325091 0.0000000 0.20000000 0.20000000
## 2737 0.2827829 0.0000000 0.07692308 0.07692308
## 2738 0.2827829 0.0000000 0.07692308 0.07692308
## 2739 0.2827829 0.0000000 0.07692308 0.07692308
## 2740 0.2827829 0.0000000 0.07692308 0.07692308
## 2741 0.2827829 0.0000000 0.07692308 0.07692308
## 2742 0.2827829 0.0000000 0.07692308 0.07692308
## 2743 0.2827829 0.0000000 0.07692308 0.07692308
## 2744 0.2827829 0.0000000 0.07692308 0.07692308
## 2745 0.2827829 0.0000000 0.07692308 0.07692308
## 2746 0.2827829 0.0000000 0.07692308 0.07692308
## 2747 0.2827829 0.0000000 0.07692308 0.07692308
## 2748 0.2827829 0.0000000 0.07692308 0.07692308
## 2749 0.2827829 0.0000000 0.07692308 0.07692308
## 2750 0.2827829 0.0000000 0.07692308 0.07692308
## 2751 0.2827829 0.0000000 0.07692308 0.07692308
## 2752 0.2827829 0.0000000 0.07692308 0.07692308
## 2753 0.2827829 0.0000000 0.07692308 0.07692308
## 2754 0.2827829 0.0000000 0.07692308 0.07692308
## 2755 0.2827829 0.0000000 0.07692308 0.07692308
## 2756 0.2827829 0.0000000 0.07692308 0.07692308
## 2757 0.2827829 0.0000000 0.07692308 0.07692308
## 2758 0.2827829 0.0000000 0.07692308 0.07692308
## 2759 0.2827829 0.0000000 0.07692308 0.07692308
## 2760 0.2827829 0.0000000 0.07692308 0.07692308
## 2761 0.3693305 0.0000000 0.33333333 0.33333333
## 2762 0.3693305 0.0000000 0.33333333 0.33333333
## 2763 0.3693305 0.0000000 0.33333333 0.33333333
## 2764 0.3693305 0.0000000 0.33333333 0.33333333
## 2765 0.3693305 0.0000000 0.33333333 0.33333333
## 2766 0.3693305 0.0000000 0.33333333 0.33333333
## 2767 0.3693305 0.0000000 0.33333333 0.33333333
## 2768 0.3693305 0.0000000 0.33333333 0.33333333
## 2769 0.3693305 0.0000000 0.33333333 0.33333333
## 2770 0.3693305 0.0000000 0.33333333 0.33333333
## 2771 0.3693305 0.0000000 0.33333333 0.33333333
## 2772 0.3693305 0.0000000 0.33333333 0.33333333
## 2773 0.3693305 0.0000000 0.33333333 0.33333333
## 2774 0.3693305 0.0000000 0.33333333 0.33333333
## 2775 0.3693305 0.0000000 0.33333333 0.33333333
## 2776 0.3693305 0.0000000 0.33333333 0.33333333
## 2777 0.3693305 0.0000000 0.33333333 0.33333333
## 2778 0.3693305 0.0000000 0.33333333 0.33333333
## 2779 0.3693305 0.0000000 0.33333333 0.33333333
## 2780 0.3693305 0.0000000 0.33333333 0.33333333
## 2781 0.3693305 0.0000000 0.33333333 0.33333333
## 2782 0.3693305 0.0000000 0.33333333 0.33333333
## 2783 0.3693305 0.0000000 0.33333333 0.33333333
## 2784 0.3693305 0.0000000 0.33333333 0.33333333
## 2785 0.3697479 0.2500000 0.25000000 0.50000000
## 2786 0.3697479 0.2500000 0.25000000 0.50000000
## 2787 0.3697479 0.2500000 0.25000000 0.50000000
## 2788 0.3697479 0.2500000 0.25000000 0.50000000
## 2789 0.3697479 0.2500000 0.25000000 0.50000000
## 2790 0.3697479 0.2500000 0.25000000 0.50000000
## 2791 0.3697479 0.2500000 0.25000000 0.50000000
## 2792 0.3697479 0.2500000 0.25000000 0.50000000
## 2793 0.3697479 0.2500000 0.25000000 0.50000000
## 2794 0.3697479 0.2500000 0.25000000 0.50000000
## 2795 0.3697479 0.2500000 0.25000000 0.50000000
## 2796 0.3697479 0.2500000 0.25000000 0.50000000
## 2797 0.3697479 0.2500000 0.25000000 0.50000000
## 2798 0.3697479 0.2500000 0.25000000 0.50000000
## 2799 0.3697479 0.2500000 0.25000000 0.50000000
## 2800 0.3697479 0.2500000 0.25000000 0.50000000
## 2801 0.3697479 0.2500000 0.25000000 0.50000000
## 2802 0.3697479 0.2500000 0.25000000 0.50000000
## 2803 0.3697479 0.2500000 0.25000000 0.50000000
## 2804 0.3697479 0.2500000 0.25000000 0.50000000
## 2805 0.3697479 0.2500000 0.25000000 0.50000000
## 2806 0.3697479 0.2500000 0.25000000 0.50000000
## 2807 0.3697479 0.2500000 0.25000000 0.50000000
## 2808 0.3697479 0.2500000 0.25000000 0.50000000
## 2809 0.7911323 0.5000000 0.30000000 0.80000000
## 2810 0.7911323 0.5000000 0.30000000 0.80000000
## 2811 0.7911323 0.5000000 0.30000000 0.80000000
## 2812 0.7911323 0.5000000 0.30000000 0.80000000
## 2813 0.7911323 0.5000000 0.30000000 0.80000000
## 2814 0.7911323 0.5000000 0.30000000 0.80000000
## 2815 0.7911323 0.5000000 0.30000000 0.80000000
## 2816 0.7911323 0.5000000 0.30000000 0.80000000
## 2817 0.7911323 0.5000000 0.30000000 0.80000000
## 2818 0.7911323 0.5000000 0.30000000 0.80000000
## 2819 0.7911323 0.5000000 0.30000000 0.80000000
## 2820 0.7911323 0.5000000 0.30000000 0.80000000
## 2821 0.7911323 0.5000000 0.30000000 0.80000000
## 2822 0.7911323 0.5000000 0.30000000 0.80000000
## 2823 0.7911323 0.5000000 0.30000000 0.80000000
## 2824 0.7911323 0.5000000 0.30000000 0.80000000
## 2825 0.7911323 0.5000000 0.30000000 0.80000000
## 2826 0.7911323 0.5000000 0.30000000 0.80000000
## 2827 0.7911323 0.5000000 0.30000000 0.80000000
## 2828 0.7911323 0.5000000 0.30000000 0.80000000
## 2829 0.7911323 0.5000000 0.30000000 0.80000000
## 2830 0.7911323 0.5000000 0.30000000 0.80000000
## 2831 0.7911323 0.5000000 0.30000000 0.80000000
## 2832 0.7911323 0.5000000 0.30000000 0.80000000
## 2833 0.8227931 0.0000000 0.45454545 0.45454545
## 2834 0.8227931 0.0000000 0.45454545 0.45454545
## 2835 0.8227931 0.0000000 0.45454545 0.45454545
## 2836 0.8227931 0.0000000 0.45454545 0.45454545
## 2837 0.8227931 0.0000000 0.45454545 0.45454545
## 2838 0.8227931 0.0000000 0.45454545 0.45454545
## 2839 0.8227931 0.0000000 0.45454545 0.45454545
## 2840 0.8227931 0.0000000 0.45454545 0.45454545
## 2841 0.8227931 0.0000000 0.45454545 0.45454545
## 2842 0.8227931 0.0000000 0.45454545 0.45454545
## 2843 0.8227931 0.0000000 0.45454545 0.45454545
## 2844 0.8227931 0.0000000 0.45454545 0.45454545
## 2845 0.8227931 0.0000000 0.45454545 0.45454545
## 2846 0.8227931 0.0000000 0.45454545 0.45454545
## 2847 0.8227931 0.0000000 0.45454545 0.45454545
## 2848 0.8227931 0.0000000 0.45454545 0.45454545
## 2849 0.8227931 0.0000000 0.45454545 0.45454545
## 2850 0.8227931 0.0000000 0.45454545 0.45454545
## 2851 0.8227931 0.0000000 0.45454545 0.45454545
## 2852 0.8227931 0.0000000 0.45454545 0.45454545
## 2853 0.8227931 0.0000000 0.45454545 0.45454545
## 2854 0.8227931 0.0000000 0.45454545 0.45454545
## 2855 0.8227931 0.0000000 0.45454545 0.45454545
## 2856 0.8227931 0.0000000 0.45454545 0.45454545
## 2857 0.8197869 0.5000000 0.30000000 0.80000000
## 2858 0.8197869 0.5000000 0.30000000 0.80000000
## 2859 0.8197869 0.5000000 0.30000000 0.80000000
## 2860 0.8197869 0.5000000 0.30000000 0.80000000
## 2861 0.8197869 0.5000000 0.30000000 0.80000000
## 2862 0.8197869 0.5000000 0.30000000 0.80000000
## 2863 0.8197869 0.5000000 0.30000000 0.80000000
## 2864 0.8197869 0.5000000 0.30000000 0.80000000
## 2865 0.8197869 0.5000000 0.30000000 0.80000000
## 2866 0.8197869 0.5000000 0.30000000 0.80000000
## 2867 0.8197869 0.5000000 0.30000000 0.80000000
## 2868 0.8197869 0.5000000 0.30000000 0.80000000
## 2869 0.8197869 0.5000000 0.30000000 0.80000000
## 2870 0.8197869 0.5000000 0.30000000 0.80000000
## 2871 0.8197869 0.5000000 0.30000000 0.80000000
## 2872 0.8197869 0.5000000 0.30000000 0.80000000
## 2873 0.8197869 0.5000000 0.30000000 0.80000000
## 2874 0.8197869 0.5000000 0.30000000 0.80000000
## 2875 0.8197869 0.5000000 0.30000000 0.80000000
## 2876 0.8197869 0.5000000 0.30000000 0.80000000
## 2877 0.8197869 0.5000000 0.30000000 0.80000000
## 2878 0.8197869 0.5000000 0.30000000 0.80000000
## 2879 0.8197869 0.5000000 0.30000000 0.80000000
## 2880 0.8197869 0.5000000 0.30000000 0.80000000
## 2881 0.0000000 0.0000000 0.00000000 0.00000000
## 2882 0.0000000 0.0000000 0.00000000 0.00000000
## 2883 0.0000000 0.0000000 0.00000000 0.00000000
## 2884 0.0000000 0.0000000 0.00000000 0.00000000
## 2885 0.0000000 0.0000000 0.00000000 0.00000000
## 2886 0.0000000 0.0000000 0.00000000 0.00000000
## 2887 0.0000000 0.0000000 0.00000000 0.00000000
## 2888 0.0000000 0.0000000 0.00000000 0.00000000
## 2889 0.0000000 0.0000000 0.00000000 0.00000000
## 2890 0.0000000 0.0000000 0.00000000 0.00000000
## 2891 0.0000000 0.0000000 0.00000000 0.00000000
## 2892 0.0000000 0.0000000 0.00000000 0.00000000
## 2893 0.0000000 0.0000000 0.00000000 0.00000000
## 2894 0.0000000 0.0000000 0.00000000 0.00000000
## 2895 0.0000000 0.0000000 0.00000000 0.00000000
## 2896 0.0000000 0.0000000 0.00000000 0.00000000
## 2897 0.0000000 0.0000000 0.00000000 0.00000000
## 2898 0.0000000 0.0000000 0.00000000 0.00000000
## 2899 0.0000000 0.0000000 0.00000000 0.00000000
## 2900 0.0000000 0.0000000 0.00000000 0.00000000
## 2901 0.0000000 0.0000000 0.00000000 0.00000000
## 2902 0.0000000 0.0000000 0.00000000 0.00000000
## 2903 0.0000000 0.0000000 0.00000000 0.00000000
## 2904 0.0000000 0.0000000 0.00000000 0.00000000
## 2905 0.2174229 0.1428571 0.05714286 0.20000000
## 2906 0.2174229 0.1428571 0.05714286 0.20000000
## 2907 0.2174229 0.1428571 0.05714286 0.20000000
## 2908 0.2174229 0.1428571 0.05714286 0.20000000
## 2909 0.2174229 0.1428571 0.05714286 0.20000000
## 2910 0.2174229 0.1428571 0.05714286 0.20000000
## 2911 0.2174229 0.1428571 0.05714286 0.20000000
## 2912 0.2174229 0.1428571 0.05714286 0.20000000
## 2913 0.2174229 0.1428571 0.05714286 0.20000000
## 2914 0.2174229 0.1428571 0.05714286 0.20000000
## 2915 0.2174229 0.1428571 0.05714286 0.20000000
## 2916 0.2174229 0.1428571 0.05714286 0.20000000
## 2917 0.2174229 0.1428571 0.05714286 0.20000000
## 2918 0.2174229 0.1428571 0.05714286 0.20000000
## 2919 0.2174229 0.1428571 0.05714286 0.20000000
## 2920 0.2174229 0.1428571 0.05714286 0.20000000
## 2921 0.2174229 0.1428571 0.05714286 0.20000000
## 2922 0.2174229 0.1428571 0.05714286 0.20000000
## 2923 0.2174229 0.1428571 0.05714286 0.20000000
## 2924 0.2174229 0.1428571 0.05714286 0.20000000
## 2925 0.2174229 0.1428571 0.05714286 0.20000000
## 2926 0.2174229 0.1428571 0.05714286 0.20000000
## 2927 0.2174229 0.1428571 0.05714286 0.20000000
## 2928 0.2174229 0.1428571 0.05714286 0.20000000
## 2929 0.2764012 0.2500000 0.00000000 0.25000000
## 2930 0.2764012 0.2500000 0.00000000 0.25000000
## 2931 0.2764012 0.2500000 0.00000000 0.25000000
## 2932 0.2764012 0.2500000 0.00000000 0.25000000
## 2933 0.2764012 0.2500000 0.00000000 0.25000000
## 2934 0.2764012 0.2500000 0.00000000 0.25000000
## 2935 0.2764012 0.2500000 0.00000000 0.25000000
## 2936 0.2764012 0.2500000 0.00000000 0.25000000
## 2937 0.2764012 0.2500000 0.00000000 0.25000000
## 2938 0.2764012 0.2500000 0.00000000 0.25000000
## 2939 0.2764012 0.2500000 0.00000000 0.25000000
## 2940 0.2764012 0.2500000 0.00000000 0.25000000
## 2941 0.2764012 0.2500000 0.00000000 0.25000000
## 2942 0.2764012 0.2500000 0.00000000 0.25000000
## 2943 0.2764012 0.2500000 0.00000000 0.25000000
## 2944 0.2764012 0.2500000 0.00000000 0.25000000
## 2945 0.2764012 0.2500000 0.00000000 0.25000000
## 2946 0.2764012 0.2500000 0.00000000 0.25000000
## 2947 0.2764012 0.2500000 0.00000000 0.25000000
## 2948 0.2764012 0.2500000 0.00000000 0.25000000
## 2949 0.2764012 0.2500000 0.00000000 0.25000000
## 2950 0.2764012 0.2500000 0.00000000 0.25000000
## 2951 0.2764012 0.2500000 0.00000000 0.25000000
## 2952 0.2764012 0.2500000 0.00000000 0.25000000
## 2953 0.5498699 0.0000000 0.60000000 0.60000000
## 2954 0.5498699 0.0000000 0.60000000 0.60000000
## 2955 0.5498699 0.0000000 0.60000000 0.60000000
## 2956 0.5498699 0.0000000 0.60000000 0.60000000
## 2957 0.5498699 0.0000000 0.60000000 0.60000000
## 2958 0.5498699 0.0000000 0.60000000 0.60000000
## 2959 0.5498699 0.0000000 0.60000000 0.60000000
## 2960 0.5498699 0.0000000 0.60000000 0.60000000
## 2961 0.5498699 0.0000000 0.60000000 0.60000000
## 2962 0.5498699 0.0000000 0.60000000 0.60000000
## 2963 0.5498699 0.0000000 0.60000000 0.60000000
## 2964 0.5498699 0.0000000 0.60000000 0.60000000
## 2965 0.5498699 0.0000000 0.60000000 0.60000000
## 2966 0.5498699 0.0000000 0.60000000 0.60000000
## 2967 0.5498699 0.0000000 0.60000000 0.60000000
## 2968 0.5498699 0.0000000 0.60000000 0.60000000
## 2969 0.5498699 0.0000000 0.60000000 0.60000000
## 2970 0.5498699 0.0000000 0.60000000 0.60000000
## 2971 0.5498699 0.0000000 0.60000000 0.60000000
## 2972 0.5498699 0.0000000 0.60000000 0.60000000
## 2973 0.5498699 0.0000000 0.60000000 0.60000000
## 2974 0.5498699 0.0000000 0.60000000 0.60000000
## 2975 0.5498699 0.0000000 0.60000000 0.60000000
## 2976 0.5498699 0.0000000 0.60000000 0.60000000
## 2977 0.3891789 0.0000000 0.33333333 0.33333333
## 2978 0.3891789 0.0000000 0.33333333 0.33333333
## 2979 0.3891789 0.0000000 0.33333333 0.33333333
## 2980 0.3891789 0.0000000 0.33333333 0.33333333
## 2981 0.3891789 0.0000000 0.33333333 0.33333333
## 2982 0.3891789 0.0000000 0.33333333 0.33333333
## 2983 0.3891789 0.0000000 0.33333333 0.33333333
## 2984 0.3891789 0.0000000 0.33333333 0.33333333
## 2985 0.3891789 0.0000000 0.33333333 0.33333333
## 2986 0.3891789 0.0000000 0.33333333 0.33333333
## 2987 0.3891789 0.0000000 0.33333333 0.33333333
## 2988 0.3891789 0.0000000 0.33333333 0.33333333
## 2989 0.3891789 0.0000000 0.33333333 0.33333333
## 2990 0.3891789 0.0000000 0.33333333 0.33333333
## 2991 0.3891789 0.0000000 0.33333333 0.33333333
## 2992 0.3891789 0.0000000 0.33333333 0.33333333
## 2993 0.3891789 0.0000000 0.33333333 0.33333333
## 2994 0.3891789 0.0000000 0.33333333 0.33333333
## 2995 0.3891789 0.0000000 0.33333333 0.33333333
## 2996 0.3891789 0.0000000 0.33333333 0.33333333
## 2997 0.3891789 0.0000000 0.33333333 0.33333333
## 2998 0.3891789 0.0000000 0.33333333 0.33333333
## 2999 0.3891789 0.0000000 0.33333333 0.33333333
## 3000 0.3891789 0.0000000 0.33333333 0.33333333
## 3001 0.6899874 0.0000000 0.33333333 0.33333333
## 3002 0.6899874 0.0000000 0.33333333 0.33333333
## 3003 0.6899874 0.0000000 0.33333333 0.33333333
## 3004 0.6899874 0.0000000 0.33333333 0.33333333
## 3005 0.6899874 0.0000000 0.33333333 0.33333333
## 3006 0.6899874 0.0000000 0.33333333 0.33333333
## 3007 0.6899874 0.0000000 0.33333333 0.33333333
## 3008 0.6899874 0.0000000 0.33333333 0.33333333
## 3009 0.6899874 0.0000000 0.33333333 0.33333333
## 3010 0.6899874 0.0000000 0.33333333 0.33333333
## 3011 0.6899874 0.0000000 0.33333333 0.33333333
## 3012 0.6899874 0.0000000 0.33333333 0.33333333
## 3013 0.6899874 0.0000000 0.33333333 0.33333333
## 3014 0.6899874 0.0000000 0.33333333 0.33333333
## 3015 0.6899874 0.0000000 0.33333333 0.33333333
## 3016 0.6899874 0.0000000 0.33333333 0.33333333
## 3017 0.6899874 0.0000000 0.33333333 0.33333333
## 3018 0.6899874 0.0000000 0.33333333 0.33333333
## 3019 0.6899874 0.0000000 0.33333333 0.33333333
## 3020 0.6899874 0.0000000 0.33333333 0.33333333
## 3021 0.6899874 0.0000000 0.33333333 0.33333333
## 3022 0.6899874 0.0000000 0.33333333 0.33333333
## 3023 0.6899874 0.0000000 0.33333333 0.33333333
## 3024 0.6899874 0.0000000 0.33333333 0.33333333
## 3025 0.8495744 0.5000000 0.27777778 0.77777778
## 3026 0.8495744 0.5000000 0.27777778 0.77777778
## 3027 0.8495744 0.5000000 0.27777778 0.77777778
## 3028 0.8495744 0.5000000 0.27777778 0.77777778
## 3029 0.8495744 0.5000000 0.27777778 0.77777778
## 3030 0.8495744 0.5000000 0.27777778 0.77777778
## 3031 0.8495744 0.5000000 0.27777778 0.77777778
## 3032 0.8495744 0.5000000 0.27777778 0.77777778
## 3033 0.8495744 0.5000000 0.27777778 0.77777778
## 3034 0.8495744 0.5000000 0.27777778 0.77777778
## 3035 0.8495744 0.5000000 0.27777778 0.77777778
## 3036 0.8495744 0.5000000 0.27777778 0.77777778
## 3037 0.8495744 0.5000000 0.27777778 0.77777778
## 3038 0.8495744 0.5000000 0.27777778 0.77777778
## 3039 0.8495744 0.5000000 0.27777778 0.77777778
## 3040 0.8495744 0.5000000 0.27777778 0.77777778
## 3041 0.8495744 0.5000000 0.27777778 0.77777778
## 3042 0.8495744 0.5000000 0.27777778 0.77777778
## 3043 0.8495744 0.5000000 0.27777778 0.77777778
## 3044 0.8495744 0.5000000 0.27777778 0.77777778
## 3045 0.8495744 0.5000000 0.27777778 0.77777778
## 3046 0.8495744 0.5000000 0.27777778 0.77777778
## 3047 0.8495744 0.5000000 0.27777778 0.77777778
## 3048 0.8495744 0.5000000 0.27777778 0.77777778
## 3049 0.7915983 0.0000000 0.28571429 0.28571429
## 3050 0.7915983 0.0000000 0.28571429 0.28571429
## 3051 0.7915983 0.0000000 0.28571429 0.28571429
## 3052 0.7915983 0.0000000 0.28571429 0.28571429
## 3053 0.7915983 0.0000000 0.28571429 0.28571429
## 3054 0.7915983 0.0000000 0.28571429 0.28571429
## 3055 0.7915983 0.0000000 0.28571429 0.28571429
## 3056 0.7915983 0.0000000 0.28571429 0.28571429
## 3057 0.7915983 0.0000000 0.28571429 0.28571429
## 3058 0.7915983 0.0000000 0.28571429 0.28571429
## 3059 0.7915983 0.0000000 0.28571429 0.28571429
## 3060 0.7915983 0.0000000 0.28571429 0.28571429
## 3061 0.7915983 0.0000000 0.28571429 0.28571429
## 3062 0.7915983 0.0000000 0.28571429 0.28571429
## 3063 0.7915983 0.0000000 0.28571429 0.28571429
## 3064 0.7915983 0.0000000 0.28571429 0.28571429
## 3065 0.7915983 0.0000000 0.28571429 0.28571429
## 3066 0.7915983 0.0000000 0.28571429 0.28571429
## 3067 0.7915983 0.0000000 0.28571429 0.28571429
## 3068 0.7915983 0.0000000 0.28571429 0.28571429
## 3069 0.7915983 0.0000000 0.28571429 0.28571429
## 3070 0.7915983 0.0000000 0.28571429 0.28571429
## 3071 0.7915983 0.0000000 0.28571429 0.28571429
## 3072 0.7915983 0.0000000 0.28571429 0.28571429
## 3073 0.0000000 0.0000000 0.00000000 0.00000000
## 3074 0.0000000 0.0000000 0.00000000 0.00000000
## 3075 0.0000000 0.0000000 0.00000000 0.00000000
## 3076 0.0000000 0.0000000 0.00000000 0.00000000
## 3077 0.0000000 0.0000000 0.00000000 0.00000000
## 3078 0.0000000 0.0000000 0.00000000 0.00000000
## 3079 0.0000000 0.0000000 0.00000000 0.00000000
## 3080 0.0000000 0.0000000 0.00000000 0.00000000
## 3081 0.0000000 0.0000000 0.00000000 0.00000000
## 3082 0.0000000 0.0000000 0.00000000 0.00000000
## 3083 0.0000000 0.0000000 0.00000000 0.00000000
## 3084 0.0000000 0.0000000 0.00000000 0.00000000
## 3085 0.0000000 0.0000000 0.00000000 0.00000000
## 3086 0.0000000 0.0000000 0.00000000 0.00000000
## 3087 0.0000000 0.0000000 0.00000000 0.00000000
## 3088 0.0000000 0.0000000 0.00000000 0.00000000
## 3089 0.0000000 0.0000000 0.00000000 0.00000000
## 3090 0.0000000 0.0000000 0.00000000 0.00000000
## 3091 0.0000000 0.0000000 0.00000000 0.00000000
## 3092 0.0000000 0.0000000 0.00000000 0.00000000
## 3093 0.0000000 0.0000000 0.00000000 0.00000000
## 3094 0.0000000 0.0000000 0.00000000 0.00000000
## 3095 0.0000000 0.0000000 0.00000000 0.00000000
## 3096 0.0000000 0.0000000 0.00000000 0.00000000
## 3097 0.4719528 0.1428571 0.10714286 0.25000000
## 3098 0.4719528 0.1428571 0.10714286 0.25000000
## 3099 0.4719528 0.1428571 0.10714286 0.25000000
## 3100 0.4719528 0.1428571 0.10714286 0.25000000
## 3101 0.4719528 0.1428571 0.10714286 0.25000000
## 3102 0.4719528 0.1428571 0.10714286 0.25000000
## 3103 0.4719528 0.1428571 0.10714286 0.25000000
## 3104 0.4719528 0.1428571 0.10714286 0.25000000
## 3105 0.4719528 0.1428571 0.10714286 0.25000000
## 3106 0.4719528 0.1428571 0.10714286 0.25000000
## 3107 0.4719528 0.1428571 0.10714286 0.25000000
## 3108 0.4719528 0.1428571 0.10714286 0.25000000
## 3109 0.4719528 0.1428571 0.10714286 0.25000000
## 3110 0.4719528 0.1428571 0.10714286 0.25000000
## 3111 0.4719528 0.1428571 0.10714286 0.25000000
## 3112 0.4719528 0.1428571 0.10714286 0.25000000
## 3113 0.4719528 0.1428571 0.10714286 0.25000000
## 3114 0.4719528 0.1428571 0.10714286 0.25000000
## 3115 0.4719528 0.1428571 0.10714286 0.25000000
## 3116 0.4719528 0.1428571 0.10714286 0.25000000
## 3117 0.4719528 0.1428571 0.10714286 0.25000000
## 3118 0.4719528 0.1428571 0.10714286 0.25000000
## 3119 0.4719528 0.1428571 0.10714286 0.25000000
## 3120 0.4719528 0.1428571 0.10714286 0.25000000
## 3121 0.2212978 0.0000000 0.23076923 0.23076923
## 3122 0.2212978 0.0000000 0.23076923 0.23076923
## 3123 0.2212978 0.0000000 0.23076923 0.23076923
## 3124 0.2212978 0.0000000 0.23076923 0.23076923
## 3125 0.2212978 0.0000000 0.23076923 0.23076923
## 3126 0.2212978 0.0000000 0.23076923 0.23076923
## 3127 0.2212978 0.0000000 0.23076923 0.23076923
## 3128 0.2212978 0.0000000 0.23076923 0.23076923
## 3129 0.2212978 0.0000000 0.23076923 0.23076923
## 3130 0.2212978 0.0000000 0.23076923 0.23076923
## 3131 0.2212978 0.0000000 0.23076923 0.23076923
## 3132 0.2212978 0.0000000 0.23076923 0.23076923
## 3133 0.2212978 0.0000000 0.23076923 0.23076923
## 3134 0.2212978 0.0000000 0.23076923 0.23076923
## 3135 0.2212978 0.0000000 0.23076923 0.23076923
## 3136 0.2212978 0.0000000 0.23076923 0.23076923
## 3137 0.2212978 0.0000000 0.23076923 0.23076923
## 3138 0.2212978 0.0000000 0.23076923 0.23076923
## 3139 0.2212978 0.0000000 0.23076923 0.23076923
## 3140 0.2212978 0.0000000 0.23076923 0.23076923
## 3141 0.2212978 0.0000000 0.23076923 0.23076923
## 3142 0.2212978 0.0000000 0.23076923 0.23076923
## 3143 0.2212978 0.0000000 0.23076923 0.23076923
## 3144 0.2212978 0.0000000 0.23076923 0.23076923
## 3145 0.6384138 0.0000000 0.60000000 0.60000000
## 3146 0.6384138 0.0000000 0.60000000 0.60000000
## 3147 0.6384138 0.0000000 0.60000000 0.60000000
## 3148 0.6384138 0.0000000 0.60000000 0.60000000
## 3149 0.6384138 0.0000000 0.60000000 0.60000000
## 3150 0.6384138 0.0000000 0.60000000 0.60000000
## 3151 0.6384138 0.0000000 0.60000000 0.60000000
## 3152 0.6384138 0.0000000 0.60000000 0.60000000
## 3153 0.6384138 0.0000000 0.60000000 0.60000000
## 3154 0.6384138 0.0000000 0.60000000 0.60000000
## 3155 0.6384138 0.0000000 0.60000000 0.60000000
## 3156 0.6384138 0.0000000 0.60000000 0.60000000
## 3157 0.6384138 0.0000000 0.60000000 0.60000000
## 3158 0.6384138 0.0000000 0.60000000 0.60000000
## 3159 0.6384138 0.0000000 0.60000000 0.60000000
## 3160 0.6384138 0.0000000 0.60000000 0.60000000
## 3161 0.6384138 0.0000000 0.60000000 0.60000000
## 3162 0.6384138 0.0000000 0.60000000 0.60000000
## 3163 0.6384138 0.0000000 0.60000000 0.60000000
## 3164 0.6384138 0.0000000 0.60000000 0.60000000
## 3165 0.6384138 0.0000000 0.60000000 0.60000000
## 3166 0.6384138 0.0000000 0.60000000 0.60000000
## 3167 0.6384138 0.0000000 0.60000000 0.60000000
## 3168 0.6384138 0.0000000 0.60000000 0.60000000
## 3169 0.5259003 0.2500000 0.08333333 0.33333333
## 3170 0.5259003 0.2500000 0.08333333 0.33333333
## 3171 0.5259003 0.2500000 0.08333333 0.33333333
## 3172 0.5259003 0.2500000 0.08333333 0.33333333
## 3173 0.5259003 0.2500000 0.08333333 0.33333333
## 3174 0.5259003 0.2500000 0.08333333 0.33333333
## 3175 0.5259003 0.2500000 0.08333333 0.33333333
## 3176 0.5259003 0.2500000 0.08333333 0.33333333
## 3177 0.5259003 0.2500000 0.08333333 0.33333333
## 3178 0.5259003 0.2500000 0.08333333 0.33333333
## 3179 0.5259003 0.2500000 0.08333333 0.33333333
## 3180 0.5259003 0.2500000 0.08333333 0.33333333
## 3181 0.5259003 0.2500000 0.08333333 0.33333333
## 3182 0.5259003 0.2500000 0.08333333 0.33333333
## 3183 0.5259003 0.2500000 0.08333333 0.33333333
## 3184 0.5259003 0.2500000 0.08333333 0.33333333
## 3185 0.5259003 0.2500000 0.08333333 0.33333333
## 3186 0.5259003 0.2500000 0.08333333 0.33333333
## 3187 0.5259003 0.2500000 0.08333333 0.33333333
## 3188 0.5259003 0.2500000 0.08333333 0.33333333
## 3189 0.5259003 0.2500000 0.08333333 0.33333333
## 3190 0.5259003 0.2500000 0.08333333 0.33333333
## 3191 0.5259003 0.2500000 0.08333333 0.33333333
## 3192 0.5259003 0.2500000 0.08333333 0.33333333
## 3193 0.7065821 0.0000000 0.45454545 0.45454545
## 3194 0.7065821 0.0000000 0.45454545 0.45454545
## 3195 0.7065821 0.0000000 0.45454545 0.45454545
## 3196 0.7065821 0.0000000 0.45454545 0.45454545
## 3197 0.7065821 0.0000000 0.45454545 0.45454545
## 3198 0.7065821 0.0000000 0.45454545 0.45454545
## 3199 0.7065821 0.0000000 0.45454545 0.45454545
## 3200 0.7065821 0.0000000 0.45454545 0.45454545
## 3201 0.7065821 0.0000000 0.45454545 0.45454545
## 3202 0.7065821 0.0000000 0.45454545 0.45454545
## 3203 0.7065821 0.0000000 0.45454545 0.45454545
## 3204 0.7065821 0.0000000 0.45454545 0.45454545
## 3205 0.7065821 0.0000000 0.45454545 0.45454545
## 3206 0.7065821 0.0000000 0.45454545 0.45454545
## 3207 0.7065821 0.0000000 0.45454545 0.45454545
## 3208 0.7065821 0.0000000 0.45454545 0.45454545
## 3209 0.7065821 0.0000000 0.45454545 0.45454545
## 3210 0.7065821 0.0000000 0.45454545 0.45454545
## 3211 0.7065821 0.0000000 0.45454545 0.45454545
## 3212 0.7065821 0.0000000 0.45454545 0.45454545
## 3213 0.7065821 0.0000000 0.45454545 0.45454545
## 3214 0.7065821 0.0000000 0.45454545 0.45454545
## 3215 0.7065821 0.0000000 0.45454545 0.45454545
## 3216 0.7065821 0.0000000 0.45454545 0.45454545
## 3217 0.7709188 0.0000000 0.55555556 0.55555556
## 3218 0.7709188 0.0000000 0.55555556 0.55555556
## 3219 0.7709188 0.0000000 0.55555556 0.55555556
## 3220 0.7709188 0.0000000 0.55555556 0.55555556
## 3221 0.7709188 0.0000000 0.55555556 0.55555556
## 3222 0.7709188 0.0000000 0.55555556 0.55555556
## 3223 0.7709188 0.0000000 0.55555556 0.55555556
## 3224 0.7709188 0.0000000 0.55555556 0.55555556
## 3225 0.7709188 0.0000000 0.55555556 0.55555556
## metaecosystem_richness total_metaecosystem_bioarea_mm2
## 1 11 96.92197
## 2 11 96.92197
## 3 11 96.92197
## 4 11 96.92197
## 5 11 96.92197
## 6 11 96.92197
## 7 11 96.92197
## 8 11 96.92197
## 9 11 96.92197
## 10 11 96.92197
## 11 11 96.92197
## 12 11 96.92197
## 13 11 96.92197
## 14 11 96.92197
## 15 11 96.92197
## 16 11 96.92197
## 17 11 96.92197
## 18 11 96.92197
## 19 11 96.92197
## 20 11 96.92197
## 21 11 96.92197
## 22 11 96.92197
## 23 11 96.92197
## 24 11 96.92197
## 25 9 152.90836
## 26 9 152.90836
## 27 9 152.90836
## 28 9 152.90836
## 29 9 152.90836
## 30 9 152.90836
## 31 9 152.90836
## 32 9 152.90836
## 33 9 152.90836
## 34 9 152.90836
## 35 9 152.90836
## 36 9 152.90836
## 37 9 152.90836
## 38 9 152.90836
## 39 9 152.90836
## 40 9 152.90836
## 41 9 152.90836
## 42 9 152.90836
## 43 9 152.90836
## 44 9 152.90836
## 45 9 152.90836
## 46 9 152.90836
## 47 9 152.90836
## 48 9 152.90836
## 49 9 163.09305
## 50 9 163.09305
## 51 9 163.09305
## 52 9 163.09305
## 53 9 163.09305
## 54 9 163.09305
## 55 9 163.09305
## 56 9 163.09305
## 57 9 163.09305
## 58 9 163.09305
## 59 9 163.09305
## 60 9 163.09305
## 61 9 163.09305
## 62 9 163.09305
## 63 9 163.09305
## 64 9 163.09305
## 65 9 163.09305
## 66 9 163.09305
## 67 9 163.09305
## 68 9 163.09305
## 69 9 163.09305
## 70 9 163.09305
## 71 9 163.09305
## 72 9 163.09305
## 73 8 182.03030
## 74 8 182.03030
## 75 8 182.03030
## 76 8 182.03030
## 77 8 182.03030
## 78 8 182.03030
## 79 8 182.03030
## 80 8 182.03030
## 81 8 182.03030
## 82 8 182.03030
## 83 8 182.03030
## 84 8 182.03030
## 85 8 182.03030
## 86 8 182.03030
## 87 8 182.03030
## 88 8 182.03030
## 89 8 182.03030
## 90 8 182.03030
## 91 8 182.03030
## 92 8 182.03030
## 93 8 182.03030
## 94 8 182.03030
## 95 8 182.03030
## 96 8 182.03030
## 97 9 140.28580
## 98 9 140.28580
## 99 9 140.28580
## 100 9 140.28580
## 101 9 140.28580
## 102 9 140.28580
## 103 9 140.28580
## 104 9 140.28580
## 105 9 140.28580
## 106 9 140.28580
## 107 9 140.28580
## 108 9 140.28580
## 109 9 140.28580
## 110 9 140.28580
## 111 9 140.28580
## 112 9 140.28580
## 113 9 140.28580
## 114 9 140.28580
## 115 9 140.28580
## 116 9 140.28580
## 117 9 140.28580
## 118 9 140.28580
## 119 9 140.28580
## 120 9 140.28580
## 121 6 117.28324
## 122 6 117.28324
## 123 6 117.28324
## 124 6 117.28324
## 125 6 117.28324
## 126 6 117.28324
## 127 6 117.28324
## 128 6 117.28324
## 129 6 117.28324
## 130 6 117.28324
## 131 6 117.28324
## 132 6 117.28324
## 133 6 117.28324
## 134 6 117.28324
## 135 6 117.28324
## 136 6 117.28324
## 137 6 117.28324
## 138 6 117.28324
## 139 6 117.28324
## 140 6 117.28324
## 141 6 117.28324
## 142 6 117.28324
## 143 6 117.28324
## 144 6 117.28324
## 145 9 103.80974
## 146 9 103.80974
## 147 9 103.80974
## 148 9 103.80974
## 149 9 103.80974
## 150 9 103.80974
## 151 9 103.80974
## 152 9 103.80974
## 153 9 103.80974
## 154 9 103.80974
## 155 9 103.80974
## 156 9 103.80974
## 157 9 103.80974
## 158 9 103.80974
## 159 9 103.80974
## 160 9 103.80974
## 161 9 103.80974
## 162 9 103.80974
## 163 9 103.80974
## 164 9 103.80974
## 165 9 103.80974
## 166 9 103.80974
## 167 9 103.80974
## 168 9 103.80974
## 169 9 92.60172
## 170 9 92.60172
## 171 9 92.60172
## 172 9 92.60172
## 173 9 92.60172
## 174 9 92.60172
## 175 9 92.60172
## 176 9 92.60172
## 177 9 92.60172
## 178 9 92.60172
## 179 9 92.60172
## 180 9 92.60172
## 181 9 92.60172
## 182 9 92.60172
## 183 9 92.60172
## 184 9 92.60172
## 185 9 92.60172
## 186 9 92.60172
## 187 9 92.60172
## 188 9 92.60172
## 189 9 92.60172
## 190 9 92.60172
## 191 9 92.60172
## 192 9 92.60172
## 193 11 96.92197
## 194 11 96.92197
## 195 11 96.92197
## 196 11 96.92197
## 197 11 96.92197
## 198 11 96.92197
## 199 11 96.92197
## 200 11 96.92197
## 201 11 96.92197
## 202 11 96.92197
## 203 11 96.92197
## 204 11 96.92197
## 205 11 96.92197
## 206 11 96.92197
## 207 11 96.92197
## 208 11 96.92197
## 209 11 96.92197
## 210 11 96.92197
## 211 11 96.92197
## 212 11 96.92197
## 213 11 96.92197
## 214 11 96.92197
## 215 11 96.92197
## 216 11 96.92197
## 217 9 229.78020
## 218 9 229.78020
## 219 9 229.78020
## 220 9 229.78020
## 221 9 229.78020
## 222 9 229.78020
## 223 9 229.78020
## 224 9 229.78020
## 225 9 229.78020
## 226 9 229.78020
## 227 9 229.78020
## 228 9 229.78020
## 229 9 229.78020
## 230 9 229.78020
## 231 9 229.78020
## 232 9 229.78020
## 233 9 229.78020
## 234 9 229.78020
## 235 9 229.78020
## 236 9 229.78020
## 237 9 229.78020
## 238 9 229.78020
## 239 9 229.78020
## 240 9 229.78020
## 241 8 133.25628
## 242 8 133.25628
## 243 8 133.25628
## 244 8 133.25628
## 245 8 133.25628
## 246 8 133.25628
## 247 8 133.25628
## 248 8 133.25628
## 249 8 133.25628
## 250 8 133.25628
## 251 8 133.25628
## 252 8 133.25628
## 253 8 133.25628
## 254 8 133.25628
## 255 8 133.25628
## 256 8 133.25628
## 257 8 133.25628
## 258 8 133.25628
## 259 8 133.25628
## 260 8 133.25628
## 261 8 133.25628
## 262 8 133.25628
## 263 8 133.25628
## 264 8 133.25628
## 265 9 209.35334
## 266 9 209.35334
## 267 9 209.35334
## 268 9 209.35334
## 269 9 209.35334
## 270 9 209.35334
## 271 9 209.35334
## 272 9 209.35334
## 273 9 209.35334
## 274 9 209.35334
## 275 9 209.35334
## 276 9 209.35334
## 277 9 209.35334
## 278 9 209.35334
## 279 9 209.35334
## 280 9 209.35334
## 281 9 209.35334
## 282 9 209.35334
## 283 9 209.35334
## 284 9 209.35334
## 285 9 209.35334
## 286 9 209.35334
## 287 9 209.35334
## 288 9 209.35334
## 289 8 176.95269
## 290 8 176.95269
## 291 8 176.95269
## 292 8 176.95269
## 293 8 176.95269
## 294 8 176.95269
## 295 8 176.95269
## 296 8 176.95269
## 297 8 176.95269
## 298 8 176.95269
## 299 8 176.95269
## 300 8 176.95269
## 301 8 176.95269
## 302 8 176.95269
## 303 8 176.95269
## 304 8 176.95269
## 305 8 176.95269
## 306 8 176.95269
## 307 8 176.95269
## 308 8 176.95269
## 309 8 176.95269
## 310 8 176.95269
## 311 8 176.95269
## 312 8 176.95269
## 313 8 119.42234
## 314 8 119.42234
## 315 8 119.42234
## 316 8 119.42234
## 317 8 119.42234
## 318 8 119.42234
## 319 8 119.42234
## 320 8 119.42234
## 321 8 119.42234
## 322 8 119.42234
## 323 8 119.42234
## 324 8 119.42234
## 325 8 119.42234
## 326 8 119.42234
## 327 8 119.42234
## 328 8 119.42234
## 329 8 119.42234
## 330 8 119.42234
## 331 8 119.42234
## 332 8 119.42234
## 333 8 119.42234
## 334 8 119.42234
## 335 8 119.42234
## 336 8 119.42234
## 337 8 105.58980
## 338 8 105.58980
## 339 8 105.58980
## 340 8 105.58980
## 341 8 105.58980
## 342 8 105.58980
## 343 8 105.58980
## 344 8 105.58980
## 345 8 105.58980
## 346 8 105.58980
## 347 8 105.58980
## 348 8 105.58980
## 349 8 105.58980
## 350 8 105.58980
## 351 8 105.58980
## 352 8 105.58980
## 353 8 105.58980
## 354 8 105.58980
## 355 8 105.58980
## 356 8 105.58980
## 357 8 105.58980
## 358 8 105.58980
## 359 8 105.58980
## 360 8 105.58980
## 361 8 70.36451
## 362 8 70.36451
## 363 8 70.36451
## 364 8 70.36451
## 365 8 70.36451
## 366 8 70.36451
## 367 8 70.36451
## 368 8 70.36451
## 369 8 70.36451
## 370 8 70.36451
## 371 8 70.36451
## 372 8 70.36451
## 373 8 70.36451
## 374 8 70.36451
## 375 8 70.36451
## 376 8 70.36451
## 377 8 70.36451
## 378 8 70.36451
## 379 8 70.36451
## 380 8 70.36451
## 381 8 70.36451
## 382 8 70.36451
## 383 8 70.36451
## 384 8 70.36451
## 385 11 96.92197
## 386 11 96.92197
## 387 11 96.92197
## 388 11 96.92197
## 389 11 96.92197
## 390 11 96.92197
## 391 11 96.92197
## 392 11 96.92197
## 393 11 96.92197
## 394 11 96.92197
## 395 11 96.92197
## 396 11 96.92197
## 397 11 96.92197
## 398 11 96.92197
## 399 11 96.92197
## 400 11 96.92197
## 401 11 96.92197
## 402 11 96.92197
## 403 11 96.92197
## 404 11 96.92197
## 405 11 96.92197
## 406 11 96.92197
## 407 11 96.92197
## 408 11 96.92197
## 409 10 184.49614
## 410 10 184.49614
## 411 10 184.49614
## 412 10 184.49614
## 413 10 184.49614
## 414 10 184.49614
## 415 10 184.49614
## 416 10 184.49614
## 417 10 184.49614
## 418 10 184.49614
## 419 10 184.49614
## 420 10 184.49614
## 421 10 184.49614
## 422 10 184.49614
## 423 10 184.49614
## 424 10 184.49614
## 425 10 184.49614
## 426 10 184.49614
## 427 10 184.49614
## 428 10 184.49614
## 429 10 184.49614
## 430 10 184.49614
## 431 10 184.49614
## 432 10 184.49614
## 433 10 183.48227
## 434 10 183.48227
## 435 10 183.48227
## 436 10 183.48227
## 437 10 183.48227
## 438 10 183.48227
## 439 10 183.48227
## 440 10 183.48227
## 441 10 183.48227
## 442 10 183.48227
## 443 10 183.48227
## 444 10 183.48227
## 445 10 183.48227
## 446 10 183.48227
## 447 10 183.48227
## 448 10 183.48227
## 449 10 183.48227
## 450 10 183.48227
## 451 10 183.48227
## 452 10 183.48227
## 453 10 183.48227
## 454 10 183.48227
## 455 10 183.48227
## 456 10 183.48227
## 457 9 141.08208
## 458 9 141.08208
## 459 9 141.08208
## 460 9 141.08208
## 461 9 141.08208
## 462 9 141.08208
## 463 9 141.08208
## 464 9 141.08208
## 465 9 141.08208
## 466 9 141.08208
## 467 9 141.08208
## 468 9 141.08208
## 469 9 141.08208
## 470 9 141.08208
## 471 9 141.08208
## 472 9 141.08208
## 473 9 141.08208
## 474 9 141.08208
## 475 9 141.08208
## 476 9 141.08208
## 477 9 141.08208
## 478 9 141.08208
## 479 9 141.08208
## 480 9 141.08208
## 481 9 156.15050
## 482 9 156.15050
## 483 9 156.15050
## 484 9 156.15050
## 485 9 156.15050
## 486 9 156.15050
## 487 9 156.15050
## 488 9 156.15050
## 489 9 156.15050
## 490 9 156.15050
## 491 9 156.15050
## 492 9 156.15050
## 493 9 156.15050
## 494 9 156.15050
## 495 9 156.15050
## 496 9 156.15050
## 497 9 156.15050
## 498 9 156.15050
## 499 9 156.15050
## 500 9 156.15050
## 501 9 156.15050
## 502 9 156.15050
## 503 9 156.15050
## 504 9 156.15050
## 505 6 140.12740
## 506 6 140.12740
## 507 6 140.12740
## 508 6 140.12740
## 509 6 140.12740
## 510 6 140.12740
## 511 6 140.12740
## 512 6 140.12740
## 513 6 140.12740
## 514 6 140.12740
## 515 6 140.12740
## 516 6 140.12740
## 517 6 140.12740
## 518 6 140.12740
## 519 6 140.12740
## 520 6 140.12740
## 521 6 140.12740
## 522 6 140.12740
## 523 6 140.12740
## 524 6 140.12740
## 525 6 140.12740
## 526 6 140.12740
## 527 6 140.12740
## 528 6 140.12740
## 529 9 100.60675
## 530 9 100.60675
## 531 9 100.60675
## 532 9 100.60675
## 533 9 100.60675
## 534 9 100.60675
## 535 9 100.60675
## 536 9 100.60675
## 537 9 100.60675
## 538 9 100.60675
## 539 9 100.60675
## 540 9 100.60675
## 541 9 100.60675
## 542 9 100.60675
## 543 9 100.60675
## 544 9 100.60675
## 545 9 100.60675
## 546 9 100.60675
## 547 9 100.60675
## 548 9 100.60675
## 549 9 100.60675
## 550 9 100.60675
## 551 9 100.60675
## 552 9 100.60675
## 553 7 141.11066
## 554 7 141.11066
## 555 7 141.11066
## 556 7 141.11066
## 557 7 141.11066
## 558 7 141.11066
## 559 7 141.11066
## 560 7 141.11066
## 561 7 141.11066
## 562 7 141.11066
## 563 7 141.11066
## 564 7 141.11066
## 565 7 141.11066
## 566 7 141.11066
## 567 7 141.11066
## 568 7 141.11066
## 569 7 141.11066
## 570 7 141.11066
## 571 7 141.11066
## 572 7 141.11066
## 573 7 141.11066
## 574 7 141.11066
## 575 7 141.11066
## 576 7 141.11066
## 577 11 96.92197
## 578 11 96.92197
## 579 11 96.92197
## 580 11 96.92197
## 581 11 96.92197
## 582 11 96.92197
## 583 11 96.92197
## 584 11 96.92197
## 585 11 96.92197
## 586 11 96.92197
## 587 11 96.92197
## 588 11 96.92197
## 589 11 96.92197
## 590 11 96.92197
## 591 11 96.92197
## 592 11 96.92197
## 593 11 96.92197
## 594 11 96.92197
## 595 11 96.92197
## 596 11 96.92197
## 597 11 96.92197
## 598 11 96.92197
## 599 11 96.92197
## 600 11 96.92197
## 601 9 115.91533
## 602 9 115.91533
## 603 9 115.91533
## 604 9 115.91533
## 605 9 115.91533
## 606 9 115.91533
## 607 9 115.91533
## 608 9 115.91533
## 609 9 115.91533
## 610 9 115.91533
## 611 9 115.91533
## 612 9 115.91533
## 613 9 115.91533
## 614 9 115.91533
## 615 9 115.91533
## 616 9 115.91533
## 617 9 115.91533
## 618 9 115.91533
## 619 9 115.91533
## 620 9 115.91533
## 621 9 115.91533
## 622 9 115.91533
## 623 9 115.91533
## 624 9 115.91533
## 625 9 161.40812
## 626 9 161.40812
## 627 9 161.40812
## 628 9 161.40812
## 629 9 161.40812
## 630 9 161.40812
## 631 9 161.40812
## 632 9 161.40812
## 633 9 161.40812
## 634 9 161.40812
## 635 9 161.40812
## 636 9 161.40812
## 637 9 161.40812
## 638 9 161.40812
## 639 9 161.40812
## 640 9 161.40812
## 641 9 161.40812
## 642 9 161.40812
## 643 9 161.40812
## 644 9 161.40812
## 645 9 161.40812
## 646 9 161.40812
## 647 9 161.40812
## 648 9 161.40812
## 649 6 97.61383
## 650 6 97.61383
## 651 6 97.61383
## 652 6 97.61383
## 653 6 97.61383
## 654 6 97.61383
## 655 6 97.61383
## 656 6 97.61383
## 657 6 97.61383
## 658 6 97.61383
## 659 6 97.61383
## 660 6 97.61383
## 661 6 97.61383
## 662 6 97.61383
## 663 6 97.61383
## 664 6 97.61383
## 665 6 97.61383
## 666 6 97.61383
## 667 6 97.61383
## 668 6 97.61383
## 669 6 97.61383
## 670 6 97.61383
## 671 6 97.61383
## 672 6 97.61383
## 673 10 155.88072
## 674 10 155.88072
## 675 10 155.88072
## 676 10 155.88072
## 677 10 155.88072
## 678 10 155.88072
## 679 10 155.88072
## 680 10 155.88072
## 681 10 155.88072
## 682 10 155.88072
## 683 10 155.88072
## 684 10 155.88072
## 685 10 155.88072
## 686 10 155.88072
## 687 10 155.88072
## 688 10 155.88072
## 689 10 155.88072
## 690 10 155.88072
## 691 10 155.88072
## 692 10 155.88072
## 693 10 155.88072
## 694 10 155.88072
## 695 10 155.88072
## 696 10 155.88072
## 697 6 60.30225
## 698 6 60.30225
## 699 6 60.30225
## 700 6 60.30225
## 701 6 60.30225
## 702 6 60.30225
## 703 6 60.30225
## 704 6 60.30225
## 705 6 60.30225
## 706 6 60.30225
## 707 6 60.30225
## 708 6 60.30225
## 709 6 60.30225
## 710 6 60.30225
## 711 6 60.30225
## 712 6 60.30225
## 713 6 60.30225
## 714 6 60.30225
## 715 6 60.30225
## 716 6 60.30225
## 717 6 60.30225
## 718 6 60.30225
## 719 6 60.30225
## 720 6 60.30225
## 721 9 41.31407
## 722 9 41.31407
## 723 9 41.31407
## 724 9 41.31407
## 725 9 41.31407
## 726 9 41.31407
## 727 9 41.31407
## 728 9 41.31407
## 729 9 41.31407
## 730 9 41.31407
## 731 9 41.31407
## 732 9 41.31407
## 733 9 41.31407
## 734 9 41.31407
## 735 9 41.31407
## 736 9 41.31407
## 737 9 41.31407
## 738 9 41.31407
## 739 9 41.31407
## 740 9 41.31407
## 741 9 41.31407
## 742 9 41.31407
## 743 9 41.31407
## 744 9 41.31407
## 745 5 32.52923
## 746 5 32.52923
## 747 5 32.52923
## 748 5 32.52923
## 749 5 32.52923
## 750 5 32.52923
## 751 5 32.52923
## 752 5 32.52923
## 753 5 32.52923
## 754 5 32.52923
## 755 5 32.52923
## 756 5 32.52923
## 757 5 32.52923
## 758 5 32.52923
## 759 5 32.52923
## 760 5 32.52923
## 761 5 32.52923
## 762 5 32.52923
## 763 5 32.52923
## 764 5 32.52923
## 765 5 32.52923
## 766 5 32.52923
## 767 5 32.52923
## 768 5 32.52923
## 769 11 96.92197
## 770 11 96.92197
## 771 11 96.92197
## 772 11 96.92197
## 773 11 96.92197
## 774 11 96.92197
## 775 11 96.92197
## 776 11 96.92197
## 777 11 96.92197
## 778 11 96.92197
## 779 11 96.92197
## 780 11 96.92197
## 781 11 96.92197
## 782 11 96.92197
## 783 11 96.92197
## 784 11 96.92197
## 785 11 96.92197
## 786 11 96.92197
## 787 11 96.92197
## 788 11 96.92197
## 789 11 96.92197
## 790 11 96.92197
## 791 11 96.92197
## 792 11 96.92197
## 793 9 120.64726
## 794 9 120.64726
## 795 9 120.64726
## 796 9 120.64726
## 797 9 120.64726
## 798 9 120.64726
## 799 9 120.64726
## 800 9 120.64726
## 801 9 120.64726
## 802 9 120.64726
## 803 9 120.64726
## 804 9 120.64726
## 805 9 120.64726
## 806 9 120.64726
## 807 9 120.64726
## 808 9 120.64726
## 809 9 120.64726
## 810 9 120.64726
## 811 9 120.64726
## 812 9 120.64726
## 813 9 120.64726
## 814 9 120.64726
## 815 9 120.64726
## 816 9 120.64726
## 817 9 154.62321
## 818 9 154.62321
## 819 9 154.62321
## 820 9 154.62321
## 821 9 154.62321
## 822 9 154.62321
## 823 9 154.62321
## 824 9 154.62321
## 825 9 154.62321
## 826 9 154.62321
## 827 9 154.62321
## 828 9 154.62321
## 829 9 154.62321
## 830 9 154.62321
## 831 9 154.62321
## 832 9 154.62321
## 833 9 154.62321
## 834 9 154.62321
## 835 9 154.62321
## 836 9 154.62321
## 837 9 154.62321
## 838 9 154.62321
## 839 9 154.62321
## 840 9 154.62321
## 841 8 190.63761
## 842 8 190.63761
## 843 8 190.63761
## 844 8 190.63761
## 845 8 190.63761
## 846 8 190.63761
## 847 8 190.63761
## 848 8 190.63761
## 849 8 190.63761
## 850 8 190.63761
## 851 8 190.63761
## 852 8 190.63761
## 853 8 190.63761
## 854 8 190.63761
## 855 8 190.63761
## 856 8 190.63761
## 857 8 190.63761
## 858 8 190.63761
## 859 8 190.63761
## 860 8 190.63761
## 861 8 190.63761
## 862 8 190.63761
## 863 8 190.63761
## 864 8 190.63761
## 865 9 214.36970
## 866 9 214.36970
## 867 9 214.36970
## 868 9 214.36970
## 869 9 214.36970
## 870 9 214.36970
## 871 9 214.36970
## 872 9 214.36970
## 873 9 214.36970
## 874 9 214.36970
## 875 9 214.36970
## 876 9 214.36970
## 877 9 214.36970
## 878 9 214.36970
## 879 9 214.36970
## 880 9 214.36970
## 881 9 214.36970
## 882 9 214.36970
## 883 9 214.36970
## 884 9 214.36970
## 885 9 214.36970
## 886 9 214.36970
## 887 9 214.36970
## 888 9 214.36970
## 889 8 171.23111
## 890 8 171.23111
## 891 8 171.23111
## 892 8 171.23111
## 893 8 171.23111
## 894 8 171.23111
## 895 8 171.23111
## 896 8 171.23111
## 897 8 171.23111
## 898 8 171.23111
## 899 8 171.23111
## 900 8 171.23111
## 901 8 171.23111
## 902 8 171.23111
## 903 8 171.23111
## 904 8 171.23111
## 905 8 171.23111
## 906 8 171.23111
## 907 8 171.23111
## 908 8 171.23111
## 909 8 171.23111
## 910 8 171.23111
## 911 8 171.23111
## 912 8 171.23111
## 913 9 151.16653
## 914 9 151.16653
## 915 9 151.16653
## 916 9 151.16653
## 917 9 151.16653
## 918 9 151.16653
## 919 9 151.16653
## 920 9 151.16653
## 921 9 151.16653
## 922 9 151.16653
## 923 9 151.16653
## 924 9 151.16653
## 925 9 151.16653
## 926 9 151.16653
## 927 9 151.16653
## 928 9 151.16653
## 929 9 151.16653
## 930 9 151.16653
## 931 9 151.16653
## 932 9 151.16653
## 933 9 151.16653
## 934 9 151.16653
## 935 9 151.16653
## 936 9 151.16653
## 937 8 111.09645
## 938 8 111.09645
## 939 8 111.09645
## 940 8 111.09645
## 941 8 111.09645
## 942 8 111.09645
## 943 8 111.09645
## 944 8 111.09645
## 945 8 111.09645
## 946 8 111.09645
## 947 8 111.09645
## 948 8 111.09645
## 949 8 111.09645
## 950 8 111.09645
## 951 8 111.09645
## 952 8 111.09645
## 953 8 111.09645
## 954 8 111.09645
## 955 8 111.09645
## 956 8 111.09645
## 957 8 111.09645
## 958 8 111.09645
## 959 8 111.09645
## 960 8 111.09645
## 961 11 96.92197
## 962 11 96.92197
## 963 11 96.92197
## 964 11 96.92197
## 965 11 96.92197
## 966 11 96.92197
## 967 11 96.92197
## 968 11 96.92197
## 969 11 96.92197
## 970 11 96.92197
## 971 11 96.92197
## 972 11 96.92197
## 973 11 96.92197
## 974 11 96.92197
## 975 11 96.92197
## 976 11 96.92197
## 977 11 96.92197
## 978 11 96.92197
## 979 11 96.92197
## 980 11 96.92197
## 981 11 96.92197
## 982 11 96.92197
## 983 11 96.92197
## 984 11 96.92197
## 985 10 147.30148
## 986 10 147.30148
## 987 10 147.30148
## 988 10 147.30148
## 989 10 147.30148
## 990 10 147.30148
## 991 10 147.30148
## 992 10 147.30148
## 993 10 147.30148
## 994 10 147.30148
## 995 10 147.30148
## 996 10 147.30148
## 997 10 147.30148
## 998 10 147.30148
## 999 10 147.30148
## 1000 10 147.30148
## 1001 10 147.30148
## 1002 10 147.30148
## 1003 10 147.30148
## 1004 10 147.30148
## 1005 10 147.30148
## 1006 10 147.30148
## 1007 10 147.30148
## 1008 10 147.30148
## 1009 10 179.42053
## 1010 10 179.42053
## 1011 10 179.42053
## 1012 10 179.42053
## 1013 10 179.42053
## 1014 10 179.42053
## 1015 10 179.42053
## 1016 10 179.42053
## 1017 10 179.42053
## 1018 10 179.42053
## 1019 10 179.42053
## 1020 10 179.42053
## 1021 10 179.42053
## 1022 10 179.42053
## 1023 10 179.42053
## 1024 10 179.42053
## 1025 10 179.42053
## 1026 10 179.42053
## 1027 10 179.42053
## 1028 10 179.42053
## 1029 10 179.42053
## 1030 10 179.42053
## 1031 10 179.42053
## 1032 10 179.42053
## 1033 8 198.43677
## 1034 8 198.43677
## 1035 8 198.43677
## 1036 8 198.43677
## 1037 8 198.43677
## 1038 8 198.43677
## 1039 8 198.43677
## 1040 8 198.43677
## 1041 8 198.43677
## 1042 8 198.43677
## 1043 8 198.43677
## 1044 8 198.43677
## 1045 8 198.43677
## 1046 8 198.43677
## 1047 8 198.43677
## 1048 8 198.43677
## 1049 8 198.43677
## 1050 8 198.43677
## 1051 8 198.43677
## 1052 8 198.43677
## 1053 8 198.43677
## 1054 8 198.43677
## 1055 8 198.43677
## 1056 8 198.43677
## 1057 8 130.67795
## 1058 8 130.67795
## 1059 8 130.67795
## 1060 8 130.67795
## 1061 8 130.67795
## 1062 8 130.67795
## 1063 8 130.67795
## 1064 8 130.67795
## 1065 8 130.67795
## 1066 8 130.67795
## 1067 8 130.67795
## 1068 8 130.67795
## 1069 8 130.67795
## 1070 8 130.67795
## 1071 8 130.67795
## 1072 8 130.67795
## 1073 8 130.67795
## 1074 8 130.67795
## 1075 8 130.67795
## 1076 8 130.67795
## 1077 8 130.67795
## 1078 8 130.67795
## 1079 8 130.67795
## 1080 8 130.67795
## 1081 7 116.52410
## 1082 7 116.52410
## 1083 7 116.52410
## 1084 7 116.52410
## 1085 7 116.52410
## 1086 7 116.52410
## 1087 7 116.52410
## 1088 7 116.52410
## 1089 7 116.52410
## 1090 7 116.52410
## 1091 7 116.52410
## 1092 7 116.52410
## 1093 7 116.52410
## 1094 7 116.52410
## 1095 7 116.52410
## 1096 7 116.52410
## 1097 7 116.52410
## 1098 7 116.52410
## 1099 7 116.52410
## 1100 7 116.52410
## 1101 7 116.52410
## 1102 7 116.52410
## 1103 7 116.52410
## 1104 7 116.52410
## 1105 7 102.17022
## 1106 7 102.17022
## 1107 7 102.17022
## 1108 7 102.17022
## 1109 7 102.17022
## 1110 7 102.17022
## 1111 7 102.17022
## 1112 7 102.17022
## 1113 7 102.17022
## 1114 7 102.17022
## 1115 7 102.17022
## 1116 7 102.17022
## 1117 7 102.17022
## 1118 7 102.17022
## 1119 7 102.17022
## 1120 7 102.17022
## 1121 7 102.17022
## 1122 7 102.17022
## 1123 7 102.17022
## 1124 7 102.17022
## 1125 7 102.17022
## 1126 7 102.17022
## 1127 7 102.17022
## 1128 7 102.17022
## 1129 9 91.77408
## 1130 9 91.77408
## 1131 9 91.77408
## 1132 9 91.77408
## 1133 9 91.77408
## 1134 9 91.77408
## 1135 9 91.77408
## 1136 9 91.77408
## 1137 9 91.77408
## 1138 9 91.77408
## 1139 9 91.77408
## 1140 9 91.77408
## 1141 9 91.77408
## 1142 9 91.77408
## 1143 9 91.77408
## 1144 9 91.77408
## 1145 9 91.77408
## 1146 9 91.77408
## 1147 9 91.77408
## 1148 9 91.77408
## 1149 9 91.77408
## 1150 9 91.77408
## 1151 9 91.77408
## 1152 9 91.77408
## 1153 11 96.92197
## 1154 11 96.92197
## 1155 11 96.92197
## 1156 11 96.92197
## 1157 11 96.92197
## 1158 11 96.92197
## 1159 11 96.92197
## 1160 11 96.92197
## 1161 11 96.92197
## 1162 11 96.92197
## 1163 11 96.92197
## 1164 11 96.92197
## 1165 11 96.92197
## 1166 11 96.92197
## 1167 11 96.92197
## 1168 11 96.92197
## 1169 11 96.92197
## 1170 11 96.92197
## 1171 11 96.92197
## 1172 11 96.92197
## 1173 11 96.92197
## 1174 11 96.92197
## 1175 11 96.92197
## 1176 11 96.92197
## 1177 10 224.17332
## 1178 10 224.17332
## 1179 10 224.17332
## 1180 10 224.17332
## 1181 10 224.17332
## 1182 10 224.17332
## 1183 10 224.17332
## 1184 10 224.17332
## 1185 10 224.17332
## 1186 10 224.17332
## 1187 10 224.17332
## 1188 10 224.17332
## 1189 10 224.17332
## 1190 10 224.17332
## 1191 10 224.17332
## 1192 10 224.17332
## 1193 10 224.17332
## 1194 10 224.17332
## 1195 10 224.17332
## 1196 10 224.17332
## 1197 10 224.17332
## 1198 10 224.17332
## 1199 10 224.17332
## 1200 10 224.17332
## 1201 9 149.58376
## 1202 9 149.58376
## 1203 9 149.58376
## 1204 9 149.58376
## 1205 9 149.58376
## 1206 9 149.58376
## 1207 9 149.58376
## 1208 9 149.58376
## 1209 9 149.58376
## 1210 9 149.58376
## 1211 9 149.58376
## 1212 9 149.58376
## 1213 9 149.58376
## 1214 9 149.58376
## 1215 9 149.58376
## 1216 9 149.58376
## 1217 9 149.58376
## 1218 9 149.58376
## 1219 9 149.58376
## 1220 9 149.58376
## 1221 9 149.58376
## 1222 9 149.58376
## 1223 9 149.58376
## 1224 9 149.58376
## 1225 9 225.75980
## 1226 9 225.75980
## 1227 9 225.75980
## 1228 9 225.75980
## 1229 9 225.75980
## 1230 9 225.75980
## 1231 9 225.75980
## 1232 9 225.75980
## 1233 9 225.75980
## 1234 9 225.75980
## 1235 9 225.75980
## 1236 9 225.75980
## 1237 9 225.75980
## 1238 9 225.75980
## 1239 9 225.75980
## 1240 9 225.75980
## 1241 9 225.75980
## 1242 9 225.75980
## 1243 9 225.75980
## 1244 9 225.75980
## 1245 9 225.75980
## 1246 9 225.75980
## 1247 9 225.75980
## 1248 9 225.75980
## 1249 6 167.34484
## 1250 6 167.34484
## 1251 6 167.34484
## 1252 6 167.34484
## 1253 6 167.34484
## 1254 6 167.34484
## 1255 6 167.34484
## 1256 6 167.34484
## 1257 6 167.34484
## 1258 6 167.34484
## 1259 6 167.34484
## 1260 6 167.34484
## 1261 6 167.34484
## 1262 6 167.34484
## 1263 6 167.34484
## 1264 6 167.34484
## 1265 6 167.34484
## 1266 6 167.34484
## 1267 6 167.34484
## 1268 6 167.34484
## 1269 6 167.34484
## 1270 6 167.34484
## 1271 6 167.34484
## 1272 6 167.34484
## 1273 8 118.66320
## 1274 8 118.66320
## 1275 8 118.66320
## 1276 8 118.66320
## 1277 8 118.66320
## 1278 8 118.66320
## 1279 8 118.66320
## 1280 8 118.66320
## 1281 8 118.66320
## 1282 8 118.66320
## 1283 8 118.66320
## 1284 8 118.66320
## 1285 8 118.66320
## 1286 8 118.66320
## 1287 8 118.66320
## 1288 8 118.66320
## 1289 8 118.66320
## 1290 8 118.66320
## 1291 8 118.66320
## 1292 8 118.66320
## 1293 8 118.66320
## 1294 8 118.66320
## 1295 8 118.66320
## 1296 8 118.66320
## 1297 7 103.95027
## 1298 7 103.95027
## 1299 7 103.95027
## 1300 7 103.95027
## 1301 7 103.95027
## 1302 7 103.95027
## 1303 7 103.95027
## 1304 7 103.95027
## 1305 7 103.95027
## 1306 7 103.95027
## 1307 7 103.95027
## 1308 7 103.95027
## 1309 7 103.95027
## 1310 7 103.95027
## 1311 7 103.95027
## 1312 7 103.95027
## 1313 7 103.95027
## 1314 7 103.95027
## 1315 7 103.95027
## 1316 7 103.95027
## 1317 7 103.95027
## 1318 7 103.95027
## 1319 7 103.95027
## 1320 7 103.95027
## 1321 7 69.53686
## 1322 7 69.53686
## 1323 7 69.53686
## 1324 7 69.53686
## 1325 7 69.53686
## 1326 7 69.53686
## 1327 7 69.53686
## 1328 7 69.53686
## 1329 7 69.53686
## 1330 7 69.53686
## 1331 7 69.53686
## 1332 7 69.53686
## 1333 7 69.53686
## 1334 7 69.53686
## 1335 7 69.53686
## 1336 7 69.53686
## 1337 7 69.53686
## 1338 7 69.53686
## 1339 7 69.53686
## 1340 7 69.53686
## 1341 7 69.53686
## 1342 7 69.53686
## 1343 7 69.53686
## 1344 7 69.53686
## 1345 11 96.92197
## 1346 11 96.92197
## 1347 11 96.92197
## 1348 11 96.92197
## 1349 11 96.92197
## 1350 11 96.92197
## 1351 11 96.92197
## 1352 11 96.92197
## 1353 11 96.92197
## 1354 11 96.92197
## 1355 11 96.92197
## 1356 11 96.92197
## 1357 11 96.92197
## 1358 11 96.92197
## 1359 11 96.92197
## 1360 11 96.92197
## 1361 11 96.92197
## 1362 11 96.92197
## 1363 11 96.92197
## 1364 11 96.92197
## 1365 11 96.92197
## 1366 11 96.92197
## 1367 11 96.92197
## 1368 11 96.92197
## 1369 10 178.88926
## 1370 10 178.88926
## 1371 10 178.88926
## 1372 10 178.88926
## 1373 10 178.88926
## 1374 10 178.88926
## 1375 10 178.88926
## 1376 10 178.88926
## 1377 10 178.88926
## 1378 10 178.88926
## 1379 10 178.88926
## 1380 10 178.88926
## 1381 10 178.88926
## 1382 10 178.88926
## 1383 10 178.88926
## 1384 10 178.88926
## 1385 10 178.88926
## 1386 10 178.88926
## 1387 10 178.88926
## 1388 10 178.88926
## 1389 10 178.88926
## 1390 10 178.88926
## 1391 10 178.88926
## 1392 10 178.88926
## 1393 10 199.80974
## 1394 10 199.80974
## 1395 10 199.80974
## 1396 10 199.80974
## 1397 10 199.80974
## 1398 10 199.80974
## 1399 10 199.80974
## 1400 10 199.80974
## 1401 10 199.80974
## 1402 10 199.80974
## 1403 10 199.80974
## 1404 10 199.80974
## 1405 10 199.80974
## 1406 10 199.80974
## 1407 10 199.80974
## 1408 10 199.80974
## 1409 10 199.80974
## 1410 10 199.80974
## 1411 10 199.80974
## 1412 10 199.80974
## 1413 10 199.80974
## 1414 10 199.80974
## 1415 10 199.80974
## 1416 10 199.80974
## 1417 9 157.48855
## 1418 9 157.48855
## 1419 9 157.48855
## 1420 9 157.48855
## 1421 9 157.48855
## 1422 9 157.48855
## 1423 9 157.48855
## 1424 9 157.48855
## 1425 9 157.48855
## 1426 9 157.48855
## 1427 9 157.48855
## 1428 9 157.48855
## 1429 9 157.48855
## 1430 9 157.48855
## 1431 9 157.48855
## 1432 9 157.48855
## 1433 9 157.48855
## 1434 9 157.48855
## 1435 9 157.48855
## 1436 9 157.48855
## 1437 9 157.48855
## 1438 9 157.48855
## 1439 9 157.48855
## 1440 9 157.48855
## 1441 8 146.54265
## 1442 8 146.54265
## 1443 8 146.54265
## 1444 8 146.54265
## 1445 8 146.54265
## 1446 8 146.54265
## 1447 8 146.54265
## 1448 8 146.54265
## 1449 8 146.54265
## 1450 8 146.54265
## 1451 8 146.54265
## 1452 8 146.54265
## 1453 8 146.54265
## 1454 8 146.54265
## 1455 8 146.54265
## 1456 8 146.54265
## 1457 8 146.54265
## 1458 8 146.54265
## 1459 8 146.54265
## 1460 8 146.54265
## 1461 8 146.54265
## 1462 8 146.54265
## 1463 8 146.54265
## 1464 8 146.54265
## 1465 7 139.36826
## 1466 7 139.36826
## 1467 7 139.36826
## 1468 7 139.36826
## 1469 7 139.36826
## 1470 7 139.36826
## 1471 7 139.36826
## 1472 7 139.36826
## 1473 7 139.36826
## 1474 7 139.36826
## 1475 7 139.36826
## 1476 7 139.36826
## 1477 7 139.36826
## 1478 7 139.36826
## 1479 7 139.36826
## 1480 7 139.36826
## 1481 7 139.36826
## 1482 7 139.36826
## 1483 7 139.36826
## 1484 7 139.36826
## 1485 7 139.36826
## 1486 7 139.36826
## 1487 7 139.36826
## 1488 7 139.36826
## 1489 8 98.96723
## 1490 8 98.96723
## 1491 8 98.96723
## 1492 8 98.96723
## 1493 8 98.96723
## 1494 8 98.96723
## 1495 8 98.96723
## 1496 8 98.96723
## 1497 8 98.96723
## 1498 8 98.96723
## 1499 8 98.96723
## 1500 8 98.96723
## 1501 8 98.96723
## 1502 8 98.96723
## 1503 8 98.96723
## 1504 8 98.96723
## 1505 8 98.96723
## 1506 8 98.96723
## 1507 8 98.96723
## 1508 8 98.96723
## 1509 8 98.96723
## 1510 8 98.96723
## 1511 8 98.96723
## 1512 8 98.96723
## 1513 7 140.28302
## 1514 7 140.28302
## 1515 7 140.28302
## 1516 7 140.28302
## 1517 7 140.28302
## 1518 7 140.28302
## 1519 7 140.28302
## 1520 7 140.28302
## 1521 7 140.28302
## 1522 7 140.28302
## 1523 7 140.28302
## 1524 7 140.28302
## 1525 7 140.28302
## 1526 7 140.28302
## 1527 7 140.28302
## 1528 7 140.28302
## 1529 7 140.28302
## 1530 7 140.28302
## 1531 7 140.28302
## 1532 7 140.28302
## 1533 7 140.28302
## 1534 7 140.28302
## 1535 7 140.28302
## 1536 7 140.28302
## 1537 11 96.92197
## 1538 11 96.92197
## 1539 11 96.92197
## 1540 11 96.92197
## 1541 11 96.92197
## 1542 11 96.92197
## 1543 11 96.92197
## 1544 11 96.92197
## 1545 11 96.92197
## 1546 11 96.92197
## 1547 11 96.92197
## 1548 11 96.92197
## 1549 11 96.92197
## 1550 11 96.92197
## 1551 11 96.92197
## 1552 11 96.92197
## 1553 11 96.92197
## 1554 11 96.92197
## 1555 11 96.92197
## 1556 11 96.92197
## 1557 11 96.92197
## 1558 11 96.92197
## 1559 11 96.92197
## 1560 11 96.92197
## 1561 9 110.30845
## 1562 9 110.30845
## 1563 9 110.30845
## 1564 9 110.30845
## 1565 9 110.30845
## 1566 9 110.30845
## 1567 9 110.30845
## 1568 9 110.30845
## 1569 9 110.30845
## 1570 9 110.30845
## 1571 9 110.30845
## 1572 9 110.30845
## 1573 9 110.30845
## 1574 9 110.30845
## 1575 9 110.30845
## 1576 9 110.30845
## 1577 9 110.30845
## 1578 9 110.30845
## 1579 9 110.30845
## 1580 9 110.30845
## 1581 9 110.30845
## 1582 9 110.30845
## 1583 9 110.30845
## 1584 9 110.30845
## 1585 10 177.73560
## 1586 10 177.73560
## 1587 10 177.73560
## 1588 10 177.73560
## 1589 10 177.73560
## 1590 10 177.73560
## 1591 10 177.73560
## 1592 10 177.73560
## 1593 10 177.73560
## 1594 10 177.73560
## 1595 10 177.73560
## 1596 10 177.73560
## 1597 10 177.73560
## 1598 10 177.73560
## 1599 10 177.73560
## 1600 10 177.73560
## 1601 10 177.73560
## 1602 10 177.73560
## 1603 10 177.73560
## 1604 10 177.73560
## 1605 10 177.73560
## 1606 10 177.73560
## 1607 10 177.73560
## 1608 10 177.73560
## 1609 7 114.02030
## 1610 7 114.02030
## 1611 7 114.02030
## 1612 7 114.02030
## 1613 7 114.02030
## 1614 7 114.02030
## 1615 7 114.02030
## 1616 7 114.02030
## 1617 7 114.02030
## 1618 7 114.02030
## 1619 7 114.02030
## 1620 7 114.02030
## 1621 7 114.02030
## 1622 7 114.02030
## 1623 7 114.02030
## 1624 7 114.02030
## 1625 7 114.02030
## 1626 7 114.02030
## 1627 7 114.02030
## 1628 7 114.02030
## 1629 7 114.02030
## 1630 7 114.02030
## 1631 7 114.02030
## 1632 7 114.02030
## 1633 8 146.27287
## 1634 8 146.27287
## 1635 8 146.27287
## 1636 8 146.27287
## 1637 8 146.27287
## 1638 8 146.27287
## 1639 8 146.27287
## 1640 8 146.27287
## 1641 8 146.27287
## 1642 8 146.27287
## 1643 8 146.27287
## 1644 8 146.27287
## 1645 8 146.27287
## 1646 8 146.27287
## 1647 8 146.27287
## 1648 8 146.27287
## 1649 8 146.27287
## 1650 8 146.27287
## 1651 8 146.27287
## 1652 8 146.27287
## 1653 8 146.27287
## 1654 8 146.27287
## 1655 8 146.27287
## 1656 8 146.27287
## 1657 7 59.54311
## 1658 7 59.54311
## 1659 7 59.54311
## 1660 7 59.54311
## 1661 7 59.54311
## 1662 7 59.54311
## 1663 7 59.54311
## 1664 7 59.54311
## 1665 7 59.54311
## 1666 7 59.54311
## 1667 7 59.54311
## 1668 7 59.54311
## 1669 7 59.54311
## 1670 7 59.54311
## 1671 7 59.54311
## 1672 7 59.54311
## 1673 7 59.54311
## 1674 7 59.54311
## 1675 7 59.54311
## 1676 7 59.54311
## 1677 7 59.54311
## 1678 7 59.54311
## 1679 7 59.54311
## 1680 7 59.54311
## 1681 6 39.67455
## 1682 6 39.67455
## 1683 6 39.67455
## 1684 6 39.67455
## 1685 6 39.67455
## 1686 6 39.67455
## 1687 6 39.67455
## 1688 6 39.67455
## 1689 6 39.67455
## 1690 6 39.67455
## 1691 6 39.67455
## 1692 6 39.67455
## 1693 6 39.67455
## 1694 6 39.67455
## 1695 6 39.67455
## 1696 6 39.67455
## 1697 6 39.67455
## 1698 6 39.67455
## 1699 6 39.67455
## 1700 6 39.67455
## 1701 6 39.67455
## 1702 6 39.67455
## 1703 6 39.67455
## 1704 6 39.67455
## 1705 5 31.70159
## 1706 5 31.70159
## 1707 5 31.70159
## 1708 5 31.70159
## 1709 5 31.70159
## 1710 5 31.70159
## 1711 5 31.70159
## 1712 5 31.70159
## 1713 5 31.70159
## 1714 5 31.70159
## 1715 5 31.70159
## 1716 5 31.70159
## 1717 5 31.70159
## 1718 5 31.70159
## 1719 5 31.70159
## 1720 5 31.70159
## 1721 5 31.70159
## 1722 5 31.70159
## 1723 5 31.70159
## 1724 5 31.70159
## 1725 5 31.70159
## 1726 5 31.70159
## 1727 5 31.70159
## 1728 5 31.70159
## 1729 11 96.92197
## 1730 11 96.92197
## 1731 11 96.92197
## 1732 11 96.92197
## 1733 11 96.92197
## 1734 11 96.92197
## 1735 11 96.92197
## 1736 11 96.92197
## 1737 11 96.92197
## 1738 11 96.92197
## 1739 11 96.92197
## 1740 11 96.92197
## 1741 11 96.92197
## 1742 11 96.92197
## 1743 11 96.92197
## 1744 11 96.92197
## 1745 11 96.92197
## 1746 11 96.92197
## 1747 11 96.92197
## 1748 11 96.92197
## 1749 11 96.92197
## 1750 11 96.92197
## 1751 11 96.92197
## 1752 11 96.92197
## 1753 9 115.04038
## 1754 9 115.04038
## 1755 9 115.04038
## 1756 9 115.04038
## 1757 9 115.04038
## 1758 9 115.04038
## 1759 9 115.04038
## 1760 9 115.04038
## 1761 9 115.04038
## 1762 9 115.04038
## 1763 9 115.04038
## 1764 9 115.04038
## 1765 9 115.04038
## 1766 9 115.04038
## 1767 9 115.04038
## 1768 9 115.04038
## 1769 9 115.04038
## 1770 9 115.04038
## 1771 9 115.04038
## 1772 9 115.04038
## 1773 9 115.04038
## 1774 9 115.04038
## 1775 9 115.04038
## 1776 9 115.04038
## 1777 10 170.95069
## 1778 10 170.95069
## 1779 10 170.95069
## 1780 10 170.95069
## 1781 10 170.95069
## 1782 10 170.95069
## 1783 10 170.95069
## 1784 10 170.95069
## 1785 10 170.95069
## 1786 10 170.95069
## 1787 10 170.95069
## 1788 10 170.95069
## 1789 10 170.95069
## 1790 10 170.95069
## 1791 10 170.95069
## 1792 10 170.95069
## 1793 10 170.95069
## 1794 10 170.95069
## 1795 10 170.95069
## 1796 10 170.95069
## 1797 10 170.95069
## 1798 10 170.95069
## 1799 10 170.95069
## 1800 10 170.95069
## 1801 8 207.04408
## 1802 8 207.04408
## 1803 8 207.04408
## 1804 8 207.04408
## 1805 8 207.04408
## 1806 8 207.04408
## 1807 8 207.04408
## 1808 8 207.04408
## 1809 8 207.04408
## 1810 8 207.04408
## 1811 8 207.04408
## 1812 8 207.04408
## 1813 8 207.04408
## 1814 8 207.04408
## 1815 8 207.04408
## 1816 8 207.04408
## 1817 8 207.04408
## 1818 8 207.04408
## 1819 8 207.04408
## 1820 8 207.04408
## 1821 8 207.04408
## 1822 8 207.04408
## 1823 8 207.04408
## 1824 8 207.04408
## 1825 9 204.76185
## 1826 9 204.76185
## 1827 9 204.76185
## 1828 9 204.76185
## 1829 9 204.76185
## 1830 9 204.76185
## 1831 9 204.76185
## 1832 9 204.76185
## 1833 9 204.76185
## 1834 9 204.76185
## 1835 9 204.76185
## 1836 9 204.76185
## 1837 9 204.76185
## 1838 9 204.76185
## 1839 9 204.76185
## 1840 9 204.76185
## 1841 9 204.76185
## 1842 9 204.76185
## 1843 9 204.76185
## 1844 9 204.76185
## 1845 9 204.76185
## 1846 9 204.76185
## 1847 9 204.76185
## 1848 9 204.76185
## 1849 9 170.47197
## 1850 9 170.47197
## 1851 9 170.47197
## 1852 9 170.47197
## 1853 9 170.47197
## 1854 9 170.47197
## 1855 9 170.47197
## 1856 9 170.47197
## 1857 9 170.47197
## 1858 9 170.47197
## 1859 9 170.47197
## 1860 9 170.47197
## 1861 9 170.47197
## 1862 9 170.47197
## 1863 9 170.47197
## 1864 9 170.47197
## 1865 9 170.47197
## 1866 9 170.47197
## 1867 9 170.47197
## 1868 9 170.47197
## 1869 9 170.47197
## 1870 9 170.47197
## 1871 9 170.47197
## 1872 9 170.47197
## 1873 8 149.52700
## 1874 8 149.52700
## 1875 8 149.52700
## 1876 8 149.52700
## 1877 8 149.52700
## 1878 8 149.52700
## 1879 8 149.52700
## 1880 8 149.52700
## 1881 8 149.52700
## 1882 8 149.52700
## 1883 8 149.52700
## 1884 8 149.52700
## 1885 8 149.52700
## 1886 8 149.52700
## 1887 8 149.52700
## 1888 8 149.52700
## 1889 8 149.52700
## 1890 8 149.52700
## 1891 8 149.52700
## 1892 8 149.52700
## 1893 8 149.52700
## 1894 8 149.52700
## 1895 8 149.52700
## 1896 8 149.52700
## 1897 8 110.26880
## 1898 8 110.26880
## 1899 8 110.26880
## 1900 8 110.26880
## 1901 8 110.26880
## 1902 8 110.26880
## 1903 8 110.26880
## 1904 8 110.26880
## 1905 8 110.26880
## 1906 8 110.26880
## 1907 8 110.26880
## 1908 8 110.26880
## 1909 8 110.26880
## 1910 8 110.26880
## 1911 8 110.26880
## 1912 8 110.26880
## 1913 8 110.26880
## 1914 8 110.26880
## 1915 8 110.26880
## 1916 8 110.26880
## 1917 8 110.26880
## 1918 8 110.26880
## 1919 8 110.26880
## 1920 8 110.26880
## 1921 11 96.92197
## 1922 11 96.92197
## 1923 11 96.92197
## 1924 11 96.92197
## 1925 11 96.92197
## 1926 11 96.92197
## 1927 11 96.92197
## 1928 11 96.92197
## 1929 11 96.92197
## 1930 11 96.92197
## 1931 11 96.92197
## 1932 11 96.92197
## 1933 11 96.92197
## 1934 11 96.92197
## 1935 11 96.92197
## 1936 11 96.92197
## 1937 11 96.92197
## 1938 11 96.92197
## 1939 11 96.92197
## 1940 11 96.92197
## 1941 11 96.92197
## 1942 11 96.92197
## 1943 11 96.92197
## 1944 11 96.92197
## 1945 8 151.39694
## 1946 8 151.39694
## 1947 8 151.39694
## 1948 8 151.39694
## 1949 8 151.39694
## 1950 8 151.39694
## 1951 8 151.39694
## 1952 8 151.39694
## 1953 8 151.39694
## 1954 8 151.39694
## 1955 8 151.39694
## 1956 8 151.39694
## 1957 8 151.39694
## 1958 8 151.39694
## 1959 8 151.39694
## 1960 8 151.39694
## 1961 8 151.39694
## 1962 8 151.39694
## 1963 8 151.39694
## 1964 8 151.39694
## 1965 8 151.39694
## 1966 8 151.39694
## 1967 8 151.39694
## 1968 8 151.39694
## 1969 8 158.17674
## 1970 8 158.17674
## 1971 8 158.17674
## 1972 8 158.17674
## 1973 8 158.17674
## 1974 8 158.17674
## 1975 8 158.17674
## 1976 8 158.17674
## 1977 8 158.17674
## 1978 8 158.17674
## 1979 8 158.17674
## 1980 8 158.17674
## 1981 8 158.17674
## 1982 8 158.17674
## 1983 8 158.17674
## 1984 8 158.17674
## 1985 8 158.17674
## 1986 8 158.17674
## 1987 8 158.17674
## 1988 8 158.17674
## 1989 8 158.17674
## 1990 8 158.17674
## 1991 8 158.17674
## 1992 8 158.17674
## 1993 8 196.58628
## 1994 8 196.58628
## 1995 8 196.58628
## 1996 8 196.58628
## 1997 8 196.58628
## 1998 8 196.58628
## 1999 8 196.58628
## 2000 8 196.58628
## 2001 8 196.58628
## 2002 8 196.58628
## 2003 8 196.58628
## 2004 8 196.58628
## 2005 8 196.58628
## 2006 8 196.58628
## 2007 8 196.58628
## 2008 8 196.58628
## 2009 8 196.58628
## 2010 8 196.58628
## 2011 8 196.58628
## 2012 8 196.58628
## 2013 8 196.58628
## 2014 8 196.58628
## 2015 8 196.58628
## 2016 8 196.58628
## 2017 9 136.02956
## 2018 9 136.02956
## 2019 9 136.02956
## 2020 9 136.02956
## 2021 9 136.02956
## 2022 9 136.02956
## 2023 9 136.02956
## 2024 9 136.02956
## 2025 9 136.02956
## 2026 9 136.02956
## 2027 9 136.02956
## 2028 9 136.02956
## 2029 9 136.02956
## 2030 9 136.02956
## 2031 9 136.02956
## 2032 9 136.02956
## 2033 9 136.02956
## 2034 9 136.02956
## 2035 9 136.02956
## 2036 9 136.02956
## 2037 9 136.02956
## 2038 9 136.02956
## 2039 9 136.02956
## 2040 9 136.02956
## 2041 7 116.45107
## 2042 7 116.45107
## 2043 7 116.45107
## 2044 7 116.45107
## 2045 7 116.45107
## 2046 7 116.45107
## 2047 7 116.45107
## 2048 7 116.45107
## 2049 7 116.45107
## 2050 7 116.45107
## 2051 7 116.45107
## 2052 7 116.45107
## 2053 7 116.45107
## 2054 7 116.45107
## 2055 7 116.45107
## 2056 7 116.45107
## 2057 7 116.45107
## 2058 7 116.45107
## 2059 7 116.45107
## 2060 7 116.45107
## 2061 7 116.45107
## 2062 7 116.45107
## 2063 7 116.45107
## 2064 7 116.45107
## 2065 7 102.05987
## 2066 7 102.05987
## 2067 7 102.05987
## 2068 7 102.05987
## 2069 7 102.05987
## 2070 7 102.05987
## 2071 7 102.05987
## 2072 7 102.05987
## 2073 7 102.05987
## 2074 7 102.05987
## 2075 7 102.05987
## 2076 7 102.05987
## 2077 7 102.05987
## 2078 7 102.05987
## 2079 7 102.05987
## 2080 7 102.05987
## 2081 7 102.05987
## 2082 7 102.05987
## 2083 7 102.05987
## 2084 7 102.05987
## 2085 7 102.05987
## 2086 7 102.05987
## 2087 7 102.05987
## 2088 7 102.05987
## 2089 10 93.36916
## 2090 10 93.36916
## 2091 10 93.36916
## 2092 10 93.36916
## 2093 10 93.36916
## 2094 10 93.36916
## 2095 10 93.36916
## 2096 10 93.36916
## 2097 10 93.36916
## 2098 10 93.36916
## 2099 10 93.36916
## 2100 10 93.36916
## 2101 10 93.36916
## 2102 10 93.36916
## 2103 10 93.36916
## 2104 10 93.36916
## 2105 10 93.36916
## 2106 10 93.36916
## 2107 10 93.36916
## 2108 10 93.36916
## 2109 10 93.36916
## 2110 10 93.36916
## 2111 10 93.36916
## 2112 10 93.36916
## 2113 11 96.92197
## 2114 11 96.92197
## 2115 11 96.92197
## 2116 11 96.92197
## 2117 11 96.92197
## 2118 11 96.92197
## 2119 11 96.92197
## 2120 11 96.92197
## 2121 11 96.92197
## 2122 11 96.92197
## 2123 11 96.92197
## 2124 11 96.92197
## 2125 11 96.92197
## 2126 11 96.92197
## 2127 11 96.92197
## 2128 11 96.92197
## 2129 11 96.92197
## 2130 11 96.92197
## 2131 11 96.92197
## 2132 11 96.92197
## 2133 11 96.92197
## 2134 11 96.92197
## 2135 11 96.92197
## 2136 11 96.92197
## 2137 10 228.26879
## 2138 10 228.26879
## 2139 10 228.26879
## 2140 10 228.26879
## 2141 10 228.26879
## 2142 10 228.26879
## 2143 10 228.26879
## 2144 10 228.26879
## 2145 10 228.26879
## 2146 10 228.26879
## 2147 10 228.26879
## 2148 10 228.26879
## 2149 10 228.26879
## 2150 10 228.26879
## 2151 10 228.26879
## 2152 10 228.26879
## 2153 10 228.26879
## 2154 10 228.26879
## 2155 10 228.26879
## 2156 10 228.26879
## 2157 10 228.26879
## 2158 10 228.26879
## 2159 10 228.26879
## 2160 10 228.26879
## 2161 6 128.33997
## 2162 6 128.33997
## 2163 6 128.33997
## 2164 6 128.33997
## 2165 6 128.33997
## 2166 6 128.33997
## 2167 6 128.33997
## 2168 6 128.33997
## 2169 6 128.33997
## 2170 6 128.33997
## 2171 6 128.33997
## 2172 6 128.33997
## 2173 6 128.33997
## 2174 6 128.33997
## 2175 6 128.33997
## 2176 6 128.33997
## 2177 6 128.33997
## 2178 6 128.33997
## 2179 6 128.33997
## 2180 6 128.33997
## 2181 6 128.33997
## 2182 6 128.33997
## 2183 6 128.33997
## 2184 6 128.33997
## 2185 8 223.90932
## 2186 8 223.90932
## 2187 8 223.90932
## 2188 8 223.90932
## 2189 8 223.90932
## 2190 8 223.90932
## 2191 8 223.90932
## 2192 8 223.90932
## 2193 8 223.90932
## 2194 8 223.90932
## 2195 8 223.90932
## 2196 8 223.90932
## 2197 8 223.90932
## 2198 8 223.90932
## 2199 8 223.90932
## 2200 8 223.90932
## 2201 8 223.90932
## 2202 8 223.90932
## 2203 8 223.90932
## 2204 8 223.90932
## 2205 8 223.90932
## 2206 8 223.90932
## 2207 8 223.90932
## 2208 8 223.90932
## 2209 6 172.69644
## 2210 6 172.69644
## 2211 6 172.69644
## 2212 6 172.69644
## 2213 6 172.69644
## 2214 6 172.69644
## 2215 6 172.69644
## 2216 6 172.69644
## 2217 6 172.69644
## 2218 6 172.69644
## 2219 6 172.69644
## 2220 6 172.69644
## 2221 6 172.69644
## 2222 6 172.69644
## 2223 6 172.69644
## 2224 6 172.69644
## 2225 6 172.69644
## 2226 6 172.69644
## 2227 6 172.69644
## 2228 6 172.69644
## 2229 6 172.69644
## 2230 6 172.69644
## 2231 6 172.69644
## 2232 6 172.69644
## 2233 8 118.59016
## 2234 8 118.59016
## 2235 8 118.59016
## 2236 8 118.59016
## 2237 8 118.59016
## 2238 8 118.59016
## 2239 8 118.59016
## 2240 8 118.59016
## 2241 8 118.59016
## 2242 8 118.59016
## 2243 8 118.59016
## 2244 8 118.59016
## 2245 8 118.59016
## 2246 8 118.59016
## 2247 8 118.59016
## 2248 8 118.59016
## 2249 8 118.59016
## 2250 8 118.59016
## 2251 8 118.59016
## 2252 8 118.59016
## 2253 8 118.59016
## 2254 8 118.59016
## 2255 8 118.59016
## 2256 8 118.59016
## 2257 7 103.83993
## 2258 7 103.83993
## 2259 7 103.83993
## 2260 7 103.83993
## 2261 7 103.83993
## 2262 7 103.83993
## 2263 7 103.83993
## 2264 7 103.83993
## 2265 7 103.83993
## 2266 7 103.83993
## 2267 7 103.83993
## 2268 7 103.83993
## 2269 7 103.83993
## 2270 7 103.83993
## 2271 7 103.83993
## 2272 7 103.83993
## 2273 7 103.83993
## 2274 7 103.83993
## 2275 7 103.83993
## 2276 7 103.83993
## 2277 7 103.83993
## 2278 7 103.83993
## 2279 7 103.83993
## 2280 7 103.83993
## 2281 8 71.13194
## 2282 8 71.13194
## 2283 8 71.13194
## 2284 8 71.13194
## 2285 8 71.13194
## 2286 8 71.13194
## 2287 8 71.13194
## 2288 8 71.13194
## 2289 8 71.13194
## 2290 8 71.13194
## 2291 8 71.13194
## 2292 8 71.13194
## 2293 8 71.13194
## 2294 8 71.13194
## 2295 8 71.13194
## 2296 8 71.13194
## 2297 8 71.13194
## 2298 8 71.13194
## 2299 8 71.13194
## 2300 8 71.13194
## 2301 8 71.13194
## 2302 8 71.13194
## 2303 8 71.13194
## 2304 8 71.13194
## 2305 11 96.92197
## 2306 11 96.92197
## 2307 11 96.92197
## 2308 11 96.92197
## 2309 11 96.92197
## 2310 11 96.92197
## 2311 11 96.92197
## 2312 11 96.92197
## 2313 11 96.92197
## 2314 11 96.92197
## 2315 11 96.92197
## 2316 11 96.92197
## 2317 11 96.92197
## 2318 11 96.92197
## 2319 11 96.92197
## 2320 11 96.92197
## 2321 11 96.92197
## 2322 11 96.92197
## 2323 11 96.92197
## 2324 11 96.92197
## 2325 11 96.92197
## 2326 11 96.92197
## 2327 11 96.92197
## 2328 11 96.92197
## 2329 10 182.98473
## 2330 10 182.98473
## 2331 10 182.98473
## 2332 10 182.98473
## 2333 10 182.98473
## 2334 10 182.98473
## 2335 10 182.98473
## 2336 10 182.98473
## 2337 10 182.98473
## 2338 10 182.98473
## 2339 10 182.98473
## 2340 10 182.98473
## 2341 10 182.98473
## 2342 10 182.98473
## 2343 10 182.98473
## 2344 10 182.98473
## 2345 10 182.98473
## 2346 10 182.98473
## 2347 10 182.98473
## 2348 10 182.98473
## 2349 10 182.98473
## 2350 10 182.98473
## 2351 10 182.98473
## 2352 10 182.98473
## 2353 9 178.56595
## 2354 9 178.56595
## 2355 9 178.56595
## 2356 9 178.56595
## 2357 9 178.56595
## 2358 9 178.56595
## 2359 9 178.56595
## 2360 9 178.56595
## 2361 9 178.56595
## 2362 9 178.56595
## 2363 9 178.56595
## 2364 9 178.56595
## 2365 9 178.56595
## 2366 9 178.56595
## 2367 9 178.56595
## 2368 9 178.56595
## 2369 9 178.56595
## 2370 9 178.56595
## 2371 9 178.56595
## 2372 9 178.56595
## 2373 9 178.56595
## 2374 9 178.56595
## 2375 9 178.56595
## 2376 9 178.56595
## 2377 9 155.63806
## 2378 9 155.63806
## 2379 9 155.63806
## 2380 9 155.63806
## 2381 9 155.63806
## 2382 9 155.63806
## 2383 9 155.63806
## 2384 9 155.63806
## 2385 9 155.63806
## 2386 9 155.63806
## 2387 9 155.63806
## 2388 9 155.63806
## 2389 9 155.63806
## 2390 9 155.63806
## 2391 9 155.63806
## 2392 9 155.63806
## 2393 9 155.63806
## 2394 9 155.63806
## 2395 9 155.63806
## 2396 9 155.63806
## 2397 9 155.63806
## 2398 9 155.63806
## 2399 9 155.63806
## 2400 9 155.63806
## 2401 8 151.89425
## 2402 8 151.89425
## 2403 8 151.89425
## 2404 8 151.89425
## 2405 8 151.89425
## 2406 8 151.89425
## 2407 8 151.89425
## 2408 8 151.89425
## 2409 8 151.89425
## 2410 8 151.89425
## 2411 8 151.89425
## 2412 8 151.89425
## 2413 8 151.89425
## 2414 8 151.89425
## 2415 8 151.89425
## 2416 8 151.89425
## 2417 8 151.89425
## 2418 8 151.89425
## 2419 8 151.89425
## 2420 8 151.89425
## 2421 8 151.89425
## 2422 8 151.89425
## 2423 8 151.89425
## 2424 8 151.89425
## 2425 7 139.29522
## 2426 7 139.29522
## 2427 7 139.29522
## 2428 7 139.29522
## 2429 7 139.29522
## 2430 7 139.29522
## 2431 7 139.29522
## 2432 7 139.29522
## 2433 7 139.29522
## 2434 7 139.29522
## 2435 7 139.29522
## 2436 7 139.29522
## 2437 7 139.29522
## 2438 7 139.29522
## 2439 7 139.29522
## 2440 7 139.29522
## 2441 7 139.29522
## 2442 7 139.29522
## 2443 7 139.29522
## 2444 7 139.29522
## 2445 7 139.29522
## 2446 7 139.29522
## 2447 7 139.29522
## 2448 7 139.29522
## 2449 8 98.85688
## 2450 8 98.85688
## 2451 8 98.85688
## 2452 8 98.85688
## 2453 8 98.85688
## 2454 8 98.85688
## 2455 8 98.85688
## 2456 8 98.85688
## 2457 8 98.85688
## 2458 8 98.85688
## 2459 8 98.85688
## 2460 8 98.85688
## 2461 8 98.85688
## 2462 8 98.85688
## 2463 8 98.85688
## 2464 8 98.85688
## 2465 8 98.85688
## 2466 8 98.85688
## 2467 8 98.85688
## 2468 8 98.85688
## 2469 8 98.85688
## 2470 8 98.85688
## 2471 8 98.85688
## 2472 8 98.85688
## 2473 8 141.87810
## 2474 8 141.87810
## 2475 8 141.87810
## 2476 8 141.87810
## 2477 8 141.87810
## 2478 8 141.87810
## 2479 8 141.87810
## 2480 8 141.87810
## 2481 8 141.87810
## 2482 8 141.87810
## 2483 8 141.87810
## 2484 8 141.87810
## 2485 8 141.87810
## 2486 8 141.87810
## 2487 8 141.87810
## 2488 8 141.87810
## 2489 8 141.87810
## 2490 8 141.87810
## 2491 8 141.87810
## 2492 8 141.87810
## 2493 8 141.87810
## 2494 8 141.87810
## 2495 8 141.87810
## 2496 8 141.87810
## 2497 11 96.92197
## 2498 11 96.92197
## 2499 11 96.92197
## 2500 11 96.92197
## 2501 11 96.92197
## 2502 11 96.92197
## 2503 11 96.92197
## 2504 11 96.92197
## 2505 11 96.92197
## 2506 11 96.92197
## 2507 11 96.92197
## 2508 11 96.92197
## 2509 11 96.92197
## 2510 11 96.92197
## 2511 11 96.92197
## 2512 11 96.92197
## 2513 11 96.92197
## 2514 11 96.92197
## 2515 11 96.92197
## 2516 11 96.92197
## 2517 11 96.92197
## 2518 11 96.92197
## 2519 11 96.92197
## 2520 11 96.92197
## 2521 7 114.40392
## 2522 7 114.40392
## 2523 7 114.40392
## 2524 7 114.40392
## 2525 7 114.40392
## 2526 7 114.40392
## 2527 7 114.40392
## 2528 7 114.40392
## 2529 7 114.40392
## 2530 7 114.40392
## 2531 7 114.40392
## 2532 7 114.40392
## 2533 7 114.40392
## 2534 7 114.40392
## 2535 7 114.40392
## 2536 7 114.40392
## 2537 7 114.40392
## 2538 7 114.40392
## 2539 7 114.40392
## 2540 7 114.40392
## 2541 7 114.40392
## 2542 7 114.40392
## 2543 7 114.40392
## 2544 7 114.40392
## 2545 8 156.49181
## 2546 8 156.49181
## 2547 8 156.49181
## 2548 8 156.49181
## 2549 8 156.49181
## 2550 8 156.49181
## 2551 8 156.49181
## 2552 8 156.49181
## 2553 8 156.49181
## 2554 8 156.49181
## 2555 8 156.49181
## 2556 8 156.49181
## 2557 8 156.49181
## 2558 8 156.49181
## 2559 8 156.49181
## 2560 8 156.49181
## 2561 8 156.49181
## 2562 8 156.49181
## 2563 8 156.49181
## 2564 8 156.49181
## 2565 8 156.49181
## 2566 8 156.49181
## 2567 8 156.49181
## 2568 8 156.49181
## 2569 7 112.16981
## 2570 7 112.16981
## 2571 7 112.16981
## 2572 7 112.16981
## 2573 7 112.16981
## 2574 7 112.16981
## 2575 7 112.16981
## 2576 7 112.16981
## 2577 7 112.16981
## 2578 7 112.16981
## 2579 7 112.16981
## 2580 7 112.16981
## 2581 7 112.16981
## 2582 7 112.16981
## 2583 7 112.16981
## 2584 7 112.16981
## 2585 7 112.16981
## 2586 7 112.16981
## 2587 7 112.16981
## 2588 7 112.16981
## 2589 7 112.16981
## 2590 7 112.16981
## 2591 7 112.16981
## 2592 7 112.16981
## 2593 7 151.62447
## 2594 7 151.62447
## 2595 7 151.62447
## 2596 7 151.62447
## 2597 7 151.62447
## 2598 7 151.62447
## 2599 7 151.62447
## 2600 7 151.62447
## 2601 7 151.62447
## 2602 7 151.62447
## 2603 7 151.62447
## 2604 7 151.62447
## 2605 7 151.62447
## 2606 7 151.62447
## 2607 7 151.62447
## 2608 7 151.62447
## 2609 7 151.62447
## 2610 7 151.62447
## 2611 7 151.62447
## 2612 7 151.62447
## 2613 7 151.62447
## 2614 7 151.62447
## 2615 7 151.62447
## 2616 7 151.62447
## 2617 6 59.47007
## 2618 6 59.47007
## 2619 6 59.47007
## 2620 6 59.47007
## 2621 6 59.47007
## 2622 6 59.47007
## 2623 6 59.47007
## 2624 6 59.47007
## 2625 6 59.47007
## 2626 6 59.47007
## 2627 6 59.47007
## 2628 6 59.47007
## 2629 6 59.47007
## 2630 6 59.47007
## 2631 6 59.47007
## 2632 6 59.47007
## 2633 6 59.47007
## 2634 6 59.47007
## 2635 6 59.47007
## 2636 6 59.47007
## 2637 6 59.47007
## 2638 6 59.47007
## 2639 6 59.47007
## 2640 6 59.47007
## 2641 7 39.56420
## 2642 7 39.56420
## 2643 7 39.56420
## 2644 7 39.56420
## 2645 7 39.56420
## 2646 7 39.56420
## 2647 7 39.56420
## 2648 7 39.56420
## 2649 7 39.56420
## 2650 7 39.56420
## 2651 7 39.56420
## 2652 7 39.56420
## 2653 7 39.56420
## 2654 7 39.56420
## 2655 7 39.56420
## 2656 7 39.56420
## 2657 7 39.56420
## 2658 7 39.56420
## 2659 7 39.56420
## 2660 7 39.56420
## 2661 7 39.56420
## 2662 7 39.56420
## 2663 7 39.56420
## 2664 7 39.56420
## 2665 6 33.29667
## 2666 6 33.29667
## 2667 6 33.29667
## 2668 6 33.29667
## 2669 6 33.29667
## 2670 6 33.29667
## 2671 6 33.29667
## 2672 6 33.29667
## 2673 6 33.29667
## 2674 6 33.29667
## 2675 6 33.29667
## 2676 6 33.29667
## 2677 6 33.29667
## 2678 6 33.29667
## 2679 6 33.29667
## 2680 6 33.29667
## 2681 6 33.29667
## 2682 6 33.29667
## 2683 6 33.29667
## 2684 6 33.29667
## 2685 6 33.29667
## 2686 6 33.29667
## 2687 6 33.29667
## 2688 6 33.29667
## 2689 11 96.92197
## 2690 11 96.92197
## 2691 11 96.92197
## 2692 11 96.92197
## 2693 11 96.92197
## 2694 11 96.92197
## 2695 11 96.92197
## 2696 11 96.92197
## 2697 11 96.92197
## 2698 11 96.92197
## 2699 11 96.92197
## 2700 11 96.92197
## 2701 11 96.92197
## 2702 11 96.92197
## 2703 11 96.92197
## 2704 11 96.92197
## 2705 11 96.92197
## 2706 11 96.92197
## 2707 11 96.92197
## 2708 11 96.92197
## 2709 11 96.92197
## 2710 11 96.92197
## 2711 11 96.92197
## 2712 11 96.92197
## 2713 9 119.13585
## 2714 9 119.13585
## 2715 9 119.13585
## 2716 9 119.13585
## 2717 9 119.13585
## 2718 9 119.13585
## 2719 9 119.13585
## 2720 9 119.13585
## 2721 9 119.13585
## 2722 9 119.13585
## 2723 9 119.13585
## 2724 9 119.13585
## 2725 9 119.13585
## 2726 9 119.13585
## 2727 9 119.13585
## 2728 9 119.13585
## 2729 9 119.13585
## 2730 9 119.13585
## 2731 9 119.13585
## 2732 9 119.13585
## 2733 9 119.13585
## 2734 9 119.13585
## 2735 9 119.13585
## 2736 9 119.13585
## 2737 7 149.70690
## 2738 7 149.70690
## 2739 7 149.70690
## 2740 7 149.70690
## 2741 7 149.70690
## 2742 7 149.70690
## 2743 7 149.70690
## 2744 7 149.70690
## 2745 7 149.70690
## 2746 7 149.70690
## 2747 7 149.70690
## 2748 7 149.70690
## 2749 7 149.70690
## 2750 7 149.70690
## 2751 7 149.70690
## 2752 7 149.70690
## 2753 7 149.70690
## 2754 7 149.70690
## 2755 7 149.70690
## 2756 7 149.70690
## 2757 7 149.70690
## 2758 7 149.70690
## 2759 7 149.70690
## 2760 7 149.70690
## 2761 8 205.19359
## 2762 8 205.19359
## 2763 8 205.19359
## 2764 8 205.19359
## 2765 8 205.19359
## 2766 8 205.19359
## 2767 8 205.19359
## 2768 8 205.19359
## 2769 8 205.19359
## 2770 8 205.19359
## 2771 8 205.19359
## 2772 8 205.19359
## 2773 8 205.19359
## 2774 8 205.19359
## 2775 8 205.19359
## 2776 8 205.19359
## 2777 8 205.19359
## 2778 8 205.19359
## 2779 8 205.19359
## 2780 8 205.19359
## 2781 8 205.19359
## 2782 8 205.19359
## 2783 8 205.19359
## 2784 8 205.19359
## 2785 9 210.11345
## 2786 9 210.11345
## 2787 9 210.11345
## 2788 9 210.11345
## 2789 9 210.11345
## 2790 9 210.11345
## 2791 9 210.11345
## 2792 9 210.11345
## 2793 9 210.11345
## 2794 9 210.11345
## 2795 9 210.11345
## 2796 9 210.11345
## 2797 9 210.11345
## 2798 9 210.11345
## 2799 9 210.11345
## 2800 9 210.11345
## 2801 9 210.11345
## 2802 9 210.11345
## 2803 9 210.11345
## 2804 9 210.11345
## 2805 9 210.11345
## 2806 9 210.11345
## 2807 9 210.11345
## 2808 9 210.11345
## 2809 9 170.39894
## 2810 9 170.39894
## 2811 9 170.39894
## 2812 9 170.39894
## 2813 9 170.39894
## 2814 9 170.39894
## 2815 9 170.39894
## 2816 9 170.39894
## 2817 9 170.39894
## 2818 9 170.39894
## 2819 9 170.39894
## 2820 9 170.39894
## 2821 9 170.39894
## 2822 9 170.39894
## 2823 9 170.39894
## 2824 9 170.39894
## 2825 9 170.39894
## 2826 9 170.39894
## 2827 9 170.39894
## 2828 9 170.39894
## 2829 9 170.39894
## 2830 9 170.39894
## 2831 9 170.39894
## 2832 9 170.39894
## 2833 8 149.41666
## 2834 8 149.41666
## 2835 8 149.41666
## 2836 8 149.41666
## 2837 8 149.41666
## 2838 8 149.41666
## 2839 8 149.41666
## 2840 8 149.41666
## 2841 8 149.41666
## 2842 8 149.41666
## 2843 8 149.41666
## 2844 8 149.41666
## 2845 8 149.41666
## 2846 8 149.41666
## 2847 8 149.41666
## 2848 8 149.41666
## 2849 8 149.41666
## 2850 8 149.41666
## 2851 8 149.41666
## 2852 8 149.41666
## 2853 8 149.41666
## 2854 8 149.41666
## 2855 8 149.41666
## 2856 8 149.41666
## 2857 9 111.86388
## 2858 9 111.86388
## 2859 9 111.86388
## 2860 9 111.86388
## 2861 9 111.86388
## 2862 9 111.86388
## 2863 9 111.86388
## 2864 9 111.86388
## 2865 9 111.86388
## 2866 9 111.86388
## 2867 9 111.86388
## 2868 9 111.86388
## 2869 9 111.86388
## 2870 9 111.86388
## 2871 9 111.86388
## 2872 9 111.86388
## 2873 9 111.86388
## 2874 9 111.86388
## 2875 9 111.86388
## 2876 9 111.86388
## 2877 9 111.86388
## 2878 9 111.86388
## 2879 9 111.86388
## 2880 9 111.86388
## 2881 11 96.92197
## 2882 11 96.92197
## 2883 11 96.92197
## 2884 11 96.92197
## 2885 11 96.92197
## 2886 11 96.92197
## 2887 11 96.92197
## 2888 11 96.92197
## 2889 11 96.92197
## 2890 11 96.92197
## 2891 11 96.92197
## 2892 11 96.92197
## 2893 11 96.92197
## 2894 11 96.92197
## 2895 11 96.92197
## 2896 11 96.92197
## 2897 11 96.92197
## 2898 11 96.92197
## 2899 11 96.92197
## 2900 11 96.92197
## 2901 11 96.92197
## 2902 11 96.92197
## 2903 11 96.92197
## 2904 11 96.92197
## 2905 9 149.85701
## 2906 9 149.85701
## 2907 9 149.85701
## 2908 9 149.85701
## 2909 9 149.85701
## 2910 9 149.85701
## 2911 9 149.85701
## 2912 9 149.85701
## 2913 9 149.85701
## 2914 9 149.85701
## 2915 9 149.85701
## 2916 9 149.85701
## 2917 9 149.85701
## 2918 9 149.85701
## 2919 9 149.85701
## 2920 9 149.85701
## 2921 9 149.85701
## 2922 9 149.85701
## 2923 9 149.85701
## 2924 9 149.85701
## 2925 9 149.85701
## 2926 9 149.85701
## 2927 9 149.85701
## 2928 9 149.85701
## 2929 10 158.73461
## 2930 10 158.73461
## 2931 10 158.73461
## 2932 10 158.73461
## 2933 10 158.73461
## 2934 10 158.73461
## 2935 10 158.73461
## 2936 10 158.73461
## 2937 10 158.73461
## 2938 10 158.73461
## 2939 10 158.73461
## 2940 10 158.73461
## 2941 10 158.73461
## 2942 10 158.73461
## 2943 10 158.73461
## 2944 10 158.73461
## 2945 10 158.73461
## 2946 10 158.73461
## 2947 10 158.73461
## 2948 10 158.73461
## 2949 10 158.73461
## 2950 10 158.73461
## 2951 10 158.73461
## 2952 10 158.73461
## 2953 8 185.82102
## 2954 8 185.82102
## 2955 8 185.82102
## 2956 8 185.82102
## 2957 8 185.82102
## 2958 8 185.82102
## 2959 8 185.82102
## 2960 8 185.82102
## 2961 8 185.82102
## 2962 8 185.82102
## 2963 8 185.82102
## 2964 8 185.82102
## 2965 8 185.82102
## 2966 8 185.82102
## 2967 8 185.82102
## 2968 8 185.82102
## 2969 8 185.82102
## 2970 8 185.82102
## 2971 8 185.82102
## 2972 8 185.82102
## 2973 8 185.82102
## 2974 8 185.82102
## 2975 8 185.82102
## 2976 8 185.82102
## 2977 8 134.71835
## 2978 8 134.71835
## 2979 8 134.71835
## 2980 8 134.71835
## 2981 8 134.71835
## 2982 8 134.71835
## 2983 8 134.71835
## 2984 8 134.71835
## 2985 8 134.71835
## 2986 8 134.71835
## 2987 8 134.71835
## 2988 8 134.71835
## 2989 8 134.71835
## 2990 8 134.71835
## 2991 8 134.71835
## 2992 8 134.71835
## 2993 8 134.71835
## 2994 8 134.71835
## 2995 8 134.71835
## 2996 8 134.71835
## 2997 8 134.71835
## 2998 8 134.71835
## 2999 8 134.71835
## 3000 8 134.71835
## 3001 6 117.16941
## 3002 6 117.16941
## 3003 6 117.16941
## 3004 6 117.16941
## 3005 6 117.16941
## 3006 6 117.16941
## 3007 6 117.16941
## 3008 6 117.16941
## 3009 6 117.16941
## 3010 6 117.16941
## 3011 6 117.16941
## 3012 6 117.16941
## 3013 6 117.16941
## 3014 6 117.16941
## 3015 6 117.16941
## 3016 6 117.16941
## 3017 6 117.16941
## 3018 6 117.16941
## 3019 6 117.16941
## 3020 6 117.16941
## 3021 6 117.16941
## 3022 6 117.16941
## 3023 6 117.16941
## 3024 6 117.16941
## 3025 8 102.14115
## 3026 8 102.14115
## 3027 8 102.14115
## 3028 8 102.14115
## 3029 8 102.14115
## 3030 8 102.14115
## 3031 8 102.14115
## 3032 8 102.14115
## 3033 8 102.14115
## 3034 8 102.14115
## 3035 8 102.14115
## 3036 8 102.14115
## 3037 8 102.14115
## 3038 8 102.14115
## 3039 8 102.14115
## 3040 8 102.14115
## 3041 8 102.14115
## 3042 8 102.14115
## 3043 8 102.14115
## 3044 8 102.14115
## 3045 8 102.14115
## 3046 8 102.14115
## 3047 8 102.14115
## 3048 8 102.14115
## 3049 9 93.17670
## 3050 9 93.17670
## 3051 9 93.17670
## 3052 9 93.17670
## 3053 9 93.17670
## 3054 9 93.17670
## 3055 9 93.17670
## 3056 9 93.17670
## 3057 9 93.17670
## 3058 9 93.17670
## 3059 9 93.17670
## 3060 9 93.17670
## 3061 9 93.17670
## 3062 9 93.17670
## 3063 9 93.17670
## 3064 9 93.17670
## 3065 9 93.17670
## 3066 9 93.17670
## 3067 9 93.17670
## 3068 9 93.17670
## 3069 9 93.17670
## 3070 9 93.17670
## 3071 9 93.17670
## 3072 9 93.17670
## 3073 11 96.92197
## 3074 11 96.92197
## 3075 11 96.92197
## 3076 11 96.92197
## 3077 11 96.92197
## 3078 11 96.92197
## 3079 11 96.92197
## 3080 11 96.92197
## 3081 11 96.92197
## 3082 11 96.92197
## 3083 11 96.92197
## 3084 11 96.92197
## 3085 11 96.92197
## 3086 11 96.92197
## 3087 11 96.92197
## 3088 11 96.92197
## 3089 11 96.92197
## 3090 11 96.92197
## 3091 11 96.92197
## 3092 11 96.92197
## 3093 11 96.92197
## 3094 11 96.92197
## 3095 11 96.92197
## 3096 11 96.92197
## 3097 10 226.72885
## 3098 10 226.72885
## 3099 10 226.72885
## 3100 10 226.72885
## 3101 10 226.72885
## 3102 10 226.72885
## 3103 10 226.72885
## 3104 10 226.72885
## 3105 10 226.72885
## 3106 10 226.72885
## 3107 10 226.72885
## 3108 10 226.72885
## 3109 10 226.72885
## 3110 10 226.72885
## 3111 10 226.72885
## 3112 10 226.72885
## 3113 10 226.72885
## 3114 10 226.72885
## 3115 10 226.72885
## 3116 10 226.72885
## 3117 10 226.72885
## 3118 10 226.72885
## 3119 10 226.72885
## 3120 10 226.72885
## 3121 8 128.89784
## 3122 8 128.89784
## 3123 8 128.89784
## 3124 8 128.89784
## 3125 8 128.89784
## 3126 8 128.89784
## 3127 8 128.89784
## 3128 8 128.89784
## 3129 8 128.89784
## 3130 8 128.89784
## 3131 8 128.89784
## 3132 8 128.89784
## 3133 8 128.89784
## 3134 8 128.89784
## 3135 8 128.89784
## 3136 8 128.89784
## 3137 8 128.89784
## 3138 8 128.89784
## 3139 8 128.89784
## 3140 8 128.89784
## 3141 8 128.89784
## 3142 8 128.89784
## 3143 8 128.89784
## 3144 8 128.89784
## 3145 8 213.14406
## 3146 8 213.14406
## 3147 8 213.14406
## 3148 8 213.14406
## 3149 8 213.14406
## 3150 8 213.14406
## 3151 8 213.14406
## 3152 8 213.14406
## 3153 8 213.14406
## 3154 8 213.14406
## 3155 8 213.14406
## 3156 8 213.14406
## 3157 8 213.14406
## 3158 8 213.14406
## 3159 8 213.14406
## 3160 8 213.14406
## 3161 8 213.14406
## 3162 8 213.14406
## 3163 8 213.14406
## 3164 8 213.14406
## 3165 8 213.14406
## 3166 8 213.14406
## 3167 8 213.14406
## 3168 8 213.14406
## 3169 6 171.38523
## 3170 6 171.38523
## 3171 6 171.38523
## 3172 6 171.38523
## 3173 6 171.38523
## 3174 6 171.38523
## 3175 6 171.38523
## 3176 6 171.38523
## 3177 6 171.38523
## 3178 6 171.38523
## 3179 6 171.38523
## 3180 6 171.38523
## 3181 6 171.38523
## 3182 6 171.38523
## 3183 6 171.38523
## 3184 6 171.38523
## 3185 6 171.38523
## 3186 6 171.38523
## 3187 6 171.38523
## 3188 6 171.38523
## 3189 6 171.38523
## 3190 6 171.38523
## 3191 6 171.38523
## 3192 6 171.38523
## 3193 8 119.30850
## 3194 8 119.30850
## 3195 8 119.30850
## 3196 8 119.30850
## 3197 8 119.30850
## 3198 8 119.30850
## 3199 8 119.30850
## 3200 8 119.30850
## 3201 8 119.30850
## 3202 8 119.30850
## 3203 8 119.30850
## 3204 8 119.30850
## 3205 8 119.30850
## 3206 8 119.30850
## 3207 8 119.30850
## 3208 8 119.30850
## 3209 8 119.30850
## 3210 8 119.30850
## 3211 8 119.30850
## 3212 8 119.30850
## 3213 8 119.30850
## 3214 8 119.30850
## 3215 8 119.30850
## 3216 8 119.30850
## 3217 7 103.92120
## 3218 7 103.92120
## 3219 7 103.92120
## 3220 7 103.92120
## 3221 7 103.92120
## 3222 7 103.92120
## 3223 7 103.92120
## 3224 7 103.92120
## 3225 7 103.92120
## total_metaecosystem_Ble_indiv total_metaecosystem_Cep_indiv
## 1 217.1512 1794.767
## 2 217.1512 1794.767
## 3 217.1512 1794.767
## 4 217.1512 1794.767
## 5 217.1512 1794.767
## 6 217.1512 1794.767
## 7 217.1512 1794.767
## 8 217.1512 1794.767
## 9 217.1512 1794.767
## 10 217.1512 1794.767
## 11 217.1512 1794.767
## 12 217.1512 1794.767
## 13 217.1512 1794.767
## 14 217.1512 1794.767
## 15 217.1512 1794.767
## 16 217.1512 1794.767
## 17 217.1512 1794.767
## 18 217.1512 1794.767
## 19 217.1512 1794.767
## 20 217.1512 1794.767
## 21 217.1512 1794.767
## 22 217.1512 1794.767
## 23 217.1512 1794.767
## 24 217.1512 1794.767
## 25 1037.7907 8056.395
## 26 1037.7907 8056.395
## 27 1037.7907 8056.395
## 28 1037.7907 8056.395
## 29 1037.7907 8056.395
## 30 1037.7907 8056.395
## 31 1037.7907 8056.395
## 32 1037.7907 8056.395
## 33 1037.7907 8056.395
## 34 1037.7907 8056.395
## 35 1037.7907 8056.395
## 36 1037.7907 8056.395
## 37 1037.7907 8056.395
## 38 1037.7907 8056.395
## 39 1037.7907 8056.395
## 40 1037.7907 8056.395
## 41 1037.7907 8056.395
## 42 1037.7907 8056.395
## 43 1037.7907 8056.395
## 44 1037.7907 8056.395
## 45 1037.7907 8056.395
## 46 1037.7907 8056.395
## 47 1037.7907 8056.395
## 48 1037.7907 8056.395
## 49 2398.2558 11759.302
## 50 2398.2558 11759.302
## 51 2398.2558 11759.302
## 52 2398.2558 11759.302
## 53 2398.2558 11759.302
## 54 2398.2558 11759.302
## 55 2398.2558 11759.302
## 56 2398.2558 11759.302
## 57 2398.2558 11759.302
## 58 2398.2558 11759.302
## 59 2398.2558 11759.302
## 60 2398.2558 11759.302
## 61 2398.2558 11759.302
## 62 2398.2558 11759.302
## 63 2398.2558 11759.302
## 64 2398.2558 11759.302
## 65 2398.2558 11759.302
## 66 2398.2558 11759.302
## 67 2398.2558 11759.302
## 68 2398.2558 11759.302
## 69 2398.2558 11759.302
## 70 2398.2558 11759.302
## 71 2398.2558 11759.302
## 72 2398.2558 11759.302
## 73 3174.4186 6552.907
## 74 3174.4186 6552.907
## 75 3174.4186 6552.907
## 76 3174.4186 6552.907
## 77 3174.4186 6552.907
## 78 3174.4186 6552.907
## 79 3174.4186 6552.907
## 80 3174.4186 6552.907
## 81 3174.4186 6552.907
## 82 3174.4186 6552.907
## 83 3174.4186 6552.907
## 84 3174.4186 6552.907
## 85 3174.4186 6552.907
## 86 3174.4186 6552.907
## 87 3174.4186 6552.907
## 88 3174.4186 6552.907
## 89 3174.4186 6552.907
## 90 3174.4186 6552.907
## 91 3174.4186 6552.907
## 92 3174.4186 6552.907
## 93 3174.4186 6552.907
## 94 3174.4186 6552.907
## 95 3174.4186 6552.907
## 96 3174.4186 6552.907
## 97 4006.3953 9326.163
## 98 4006.3953 9326.163
## 99 4006.3953 9326.163
## 100 4006.3953 9326.163
## 101 4006.3953 9326.163
## 102 4006.3953 9326.163
## 103 4006.3953 9326.163
## 104 4006.3953 9326.163
## 105 4006.3953 9326.163
## 106 4006.3953 9326.163
## 107 4006.3953 9326.163
## 108 4006.3953 9326.163
## 109 4006.3953 9326.163
## 110 4006.3953 9326.163
## 111 4006.3953 9326.163
## 112 4006.3953 9326.163
## 113 4006.3953 9326.163
## 114 4006.3953 9326.163
## 115 4006.3953 9326.163
## 116 4006.3953 9326.163
## 117 4006.3953 9326.163
## 118 4006.3953 9326.163
## 119 4006.3953 9326.163
## 120 4006.3953 9326.163
## 121 3750.0000 9818.023
## 122 3750.0000 9818.023
## 123 3750.0000 9818.023
## 124 3750.0000 9818.023
## 125 3750.0000 9818.023
## 126 3750.0000 9818.023
## 127 3750.0000 9818.023
## 128 3750.0000 9818.023
## 129 3750.0000 9818.023
## 130 3750.0000 9818.023
## 131 3750.0000 9818.023
## 132 3750.0000 9818.023
## 133 3750.0000 9818.023
## 134 3750.0000 9818.023
## 135 3750.0000 9818.023
## 136 3750.0000 9818.023
## 137 3750.0000 9818.023
## 138 3750.0000 9818.023
## 139 3750.0000 9818.023
## 140 3750.0000 9818.023
## 141 3750.0000 9818.023
## 142 3750.0000 9818.023
## 143 3750.0000 9818.023
## 144 3750.0000 9818.023
## 145 2986.9186 15800.581
## 146 2986.9186 15800.581
## 147 2986.9186 15800.581
## 148 2986.9186 15800.581
## 149 2986.9186 15800.581
## 150 2986.9186 15800.581
## 151 2986.9186 15800.581
## 152 2986.9186 15800.581
## 153 2986.9186 15800.581
## 154 2986.9186 15800.581
## 155 2986.9186 15800.581
## 156 2986.9186 15800.581
## 157 2986.9186 15800.581
## 158 2986.9186 15800.581
## 159 2986.9186 15800.581
## 160 2986.9186 15800.581
## 161 2986.9186 15800.581
## 162 2986.9186 15800.581
## 163 2986.9186 15800.581
## 164 2986.9186 15800.581
## 165 2986.9186 15800.581
## 166 2986.9186 15800.581
## 167 2986.9186 15800.581
## 168 2986.9186 15800.581
## 169 1748.5465 15422.093
## 170 1748.5465 15422.093
## 171 1748.5465 15422.093
## 172 1748.5465 15422.093
## 173 1748.5465 15422.093
## 174 1748.5465 15422.093
## 175 1748.5465 15422.093
## 176 1748.5465 15422.093
## 177 1748.5465 15422.093
## 178 1748.5465 15422.093
## 179 1748.5465 15422.093
## 180 1748.5465 15422.093
## 181 1748.5465 15422.093
## 182 1748.5465 15422.093
## 183 1748.5465 15422.093
## 184 1748.5465 15422.093
## 185 1748.5465 15422.093
## 186 1748.5465 15422.093
## 187 1748.5465 15422.093
## 188 1748.5465 15422.093
## 189 1748.5465 15422.093
## 190 1748.5465 15422.093
## 191 1748.5465 15422.093
## 192 1748.5465 15422.093
## 193 217.1512 1794.767
## 194 217.1512 1794.767
## 195 217.1512 1794.767
## 196 217.1512 1794.767
## 197 217.1512 1794.767
## 198 217.1512 1794.767
## 199 217.1512 1794.767
## 200 217.1512 1794.767
## 201 217.1512 1794.767
## 202 217.1512 1794.767
## 203 217.1512 1794.767
## 204 217.1512 1794.767
## 205 217.1512 1794.767
## 206 217.1512 1794.767
## 207 217.1512 1794.767
## 208 217.1512 1794.767
## 209 217.1512 1794.767
## 210 217.1512 1794.767
## 211 217.1512 1794.767
## 212 217.1512 1794.767
## 213 217.1512 1794.767
## 214 217.1512 1794.767
## 215 217.1512 1794.767
## 216 217.1512 1794.767
## 217 5537.7907 9695.930
## 218 5537.7907 9695.930
## 219 5537.7907 9695.930
## 220 5537.7907 9695.930
## 221 5537.7907 9695.930
## 222 5537.7907 9695.930
## 223 5537.7907 9695.930
## 224 5537.7907 9695.930
## 225 5537.7907 9695.930
## 226 5537.7907 9695.930
## 227 5537.7907 9695.930
## 228 5537.7907 9695.930
## 229 5537.7907 9695.930
## 230 5537.7907 9695.930
## 231 5537.7907 9695.930
## 232 5537.7907 9695.930
## 233 5537.7907 9695.930
## 234 5537.7907 9695.930
## 235 5537.7907 9695.930
## 236 5537.7907 9695.930
## 237 5537.7907 9695.930
## 238 5537.7907 9695.930
## 239 5537.7907 9695.930
## 240 5537.7907 9695.930
## 241 2904.0698 12648.837
## 242 2904.0698 12648.837
## 243 2904.0698 12648.837
## 244 2904.0698 12648.837
## 245 2904.0698 12648.837
## 246 2904.0698 12648.837
## 247 2904.0698 12648.837
## 248 2904.0698 12648.837
## 249 2904.0698 12648.837
## 250 2904.0698 12648.837
## 251 2904.0698 12648.837
## 252 2904.0698 12648.837
## 253 2904.0698 12648.837
## 254 2904.0698 12648.837
## 255 2904.0698 12648.837
## 256 2904.0698 12648.837
## 257 2904.0698 12648.837
## 258 2904.0698 12648.837
## 259 2904.0698 12648.837
## 260 2904.0698 12648.837
## 261 2904.0698 12648.837
## 262 2904.0698 12648.837
## 263 2904.0698 12648.837
## 264 2904.0698 12648.837
## 265 4752.9070 14872.674
## 266 4752.9070 14872.674
## 267 4752.9070 14872.674
## 268 4752.9070 14872.674
## 269 4752.9070 14872.674
## 270 4752.9070 14872.674
## 271 4752.9070 14872.674
## 272 4752.9070 14872.674
## 273 4752.9070 14872.674
## 274 4752.9070 14872.674
## 275 4752.9070 14872.674
## 276 4752.9070 14872.674
## 277 4752.9070 14872.674
## 278 4752.9070 14872.674
## 279 4752.9070 14872.674
## 280 4752.9070 14872.674
## 281 4752.9070 14872.674
## 282 4752.9070 14872.674
## 283 4752.9070 14872.674
## 284 4752.9070 14872.674
## 285 4752.9070 14872.674
## 286 4752.9070 14872.674
## 287 4752.9070 14872.674
## 288 4752.9070 14872.674
## 289 3430.8140 13006.395
## 290 3430.8140 13006.395
## 291 3430.8140 13006.395
## 292 3430.8140 13006.395
## 293 3430.8140 13006.395
## 294 3430.8140 13006.395
## 295 3430.8140 13006.395
## 296 3430.8140 13006.395
## 297 3430.8140 13006.395
## 298 3430.8140 13006.395
## 299 3430.8140 13006.395
## 300 3430.8140 13006.395
## 301 3430.8140 13006.395
## 302 3430.8140 13006.395
## 303 3430.8140 13006.395
## 304 3430.8140 13006.395
## 305 3430.8140 13006.395
## 306 3430.8140 13006.395
## 307 3430.8140 13006.395
## 308 3430.8140 13006.395
## 309 3430.8140 13006.395
## 310 3430.8140 13006.395
## 311 3430.8140 13006.395
## 312 3430.8140 13006.395
## 313 2659.8837 8248.256
## 314 2659.8837 8248.256
## 315 2659.8837 8248.256
## 316 2659.8837 8248.256
## 317 2659.8837 8248.256
## 318 2659.8837 8248.256
## 319 2659.8837 8248.256
## 320 2659.8837 8248.256
## 321 2659.8837 8248.256
## 322 2659.8837 8248.256
## 323 2659.8837 8248.256
## 324 2659.8837 8248.256
## 325 2659.8837 8248.256
## 326 2659.8837 8248.256
## 327 2659.8837 8248.256
## 328 2659.8837 8248.256
## 329 2659.8837 8248.256
## 330 2659.8837 8248.256
## 331 2659.8837 8248.256
## 332 2659.8837 8248.256
## 333 2659.8837 8248.256
## 334 2659.8837 8248.256
## 335 2659.8837 8248.256
## 336 2659.8837 8248.256
## 337 4984.0116 12547.674
## 338 4984.0116 12547.674
## 339 4984.0116 12547.674
## 340 4984.0116 12547.674
## 341 4984.0116 12547.674
## 342 4984.0116 12547.674
## 343 4984.0116 12547.674
## 344 4984.0116 12547.674
## 345 4984.0116 12547.674
## 346 4984.0116 12547.674
## 347 4984.0116 12547.674
## 348 4984.0116 12547.674
## 349 4984.0116 12547.674
## 350 4984.0116 12547.674
## 351 4984.0116 12547.674
## 352 4984.0116 12547.674
## 353 4984.0116 12547.674
## 354 4984.0116 12547.674
## 355 4984.0116 12547.674
## 356 4984.0116 12547.674
## 357 4984.0116 12547.674
## 358 4984.0116 12547.674
## 359 4984.0116 12547.674
## 360 4984.0116 12547.674
## 361 2376.4535 10438.081
## 362 2376.4535 10438.081
## 363 2376.4535 10438.081
## 364 2376.4535 10438.081
## 365 2376.4535 10438.081
## 366 2376.4535 10438.081
## 367 2376.4535 10438.081
## 368 2376.4535 10438.081
## 369 2376.4535 10438.081
## 370 2376.4535 10438.081
## 371 2376.4535 10438.081
## 372 2376.4535 10438.081
## 373 2376.4535 10438.081
## 374 2376.4535 10438.081
## 375 2376.4535 10438.081
## 376 2376.4535 10438.081
## 377 2376.4535 10438.081
## 378 2376.4535 10438.081
## 379 2376.4535 10438.081
## 380 2376.4535 10438.081
## 381 2376.4535 10438.081
## 382 2376.4535 10438.081
## 383 2376.4535 10438.081
## 384 2376.4535 10438.081
## 385 217.1512 1794.767
## 386 217.1512 1794.767
## 387 217.1512 1794.767
## 388 217.1512 1794.767
## 389 217.1512 1794.767
## 390 217.1512 1794.767
## 391 217.1512 1794.767
## 392 217.1512 1794.767
## 393 217.1512 1794.767
## 394 217.1512 1794.767
## 395 217.1512 1794.767
## 396 217.1512 1794.767
## 397 217.1512 1794.767
## 398 217.1512 1794.767
## 399 217.1512 1794.767
## 400 217.1512 1794.767
## 401 217.1512 1794.767
## 402 217.1512 1794.767
## 403 217.1512 1794.767
## 404 217.1512 1794.767
## 405 217.1512 1794.767
## 406 217.1512 1794.767
## 407 217.1512 1794.767
## 408 217.1512 1794.767
## 409 3488.3721 8344.186
## 410 3488.3721 8344.186
## 411 3488.3721 8344.186
## 412 3488.3721 8344.186
## 413 3488.3721 8344.186
## 414 3488.3721 8344.186
## 415 3488.3721 8344.186
## 416 3488.3721 8344.186
## 417 3488.3721 8344.186
## 418 3488.3721 8344.186
## 419 3488.3721 8344.186
## 420 3488.3721 8344.186
## 421 3488.3721 8344.186
## 422 3488.3721 8344.186
## 423 3488.3721 8344.186
## 424 3488.3721 8344.186
## 425 3488.3721 8344.186
## 426 3488.3721 8344.186
## 427 3488.3721 8344.186
## 428 3488.3721 8344.186
## 429 3488.3721 8344.186
## 430 3488.3721 8344.186
## 431 3488.3721 8344.186
## 432 3488.3721 8344.186
## 433 3715.1163 12762.209
## 434 3715.1163 12762.209
## 435 3715.1163 12762.209
## 436 3715.1163 12762.209
## 437 3715.1163 12762.209
## 438 3715.1163 12762.209
## 439 3715.1163 12762.209
## 440 3715.1163 12762.209
## 441 3715.1163 12762.209
## 442 3715.1163 12762.209
## 443 3715.1163 12762.209
## 444 3715.1163 12762.209
## 445 3715.1163 12762.209
## 446 3715.1163 12762.209
## 447 3715.1163 12762.209
## 448 3715.1163 12762.209
## 449 3715.1163 12762.209
## 450 3715.1163 12762.209
## 451 3715.1163 12762.209
## 452 3715.1163 12762.209
## 453 3715.1163 12762.209
## 454 3715.1163 12762.209
## 455 3715.1163 12762.209
## 456 3715.1163 12762.209
## 457 4491.2791 6770.930
## 458 4491.2791 6770.930
## 459 4491.2791 6770.930
## 460 4491.2791 6770.930
## 461 4491.2791 6770.930
## 462 4491.2791 6770.930
## 463 4491.2791 6770.930
## 464 4491.2791 6770.930
## 465 4491.2791 6770.930
## 466 4491.2791 6770.930
## 467 4491.2791 6770.930
## 468 4491.2791 6770.930
## 469 4491.2791 6770.930
## 470 4491.2791 6770.930
## 471 4491.2791 6770.930
## 472 4491.2791 6770.930
## 473 4491.2791 6770.930
## 474 4491.2791 6770.930
## 475 4491.2791 6770.930
## 476 4491.2791 6770.930
## 477 4491.2791 6770.930
## 478 4491.2791 6770.930
## 479 4491.2791 6770.930
## 480 4491.2791 6770.930
## 481 5768.0233 10730.233
## 482 5768.0233 10730.233
## 483 5768.0233 10730.233
## 484 5768.0233 10730.233
## 485 5768.0233 10730.233
## 486 5768.0233 10730.233
## 487 5768.0233 10730.233
## 488 5768.0233 10730.233
## 489 5768.0233 10730.233
## 490 5768.0233 10730.233
## 491 5768.0233 10730.233
## 492 5768.0233 10730.233
## 493 5768.0233 10730.233
## 494 5768.0233 10730.233
## 495 5768.0233 10730.233
## 496 5768.0233 10730.233
## 497 5768.0233 10730.233
## 498 5768.0233 10730.233
## 499 5768.0233 10730.233
## 500 5768.0233 10730.233
## 501 5768.0233 10730.233
## 502 5768.0233 10730.233
## 503 5768.0233 10730.233
## 504 5768.0233 10730.233
## 505 7709.3023 3722.093
## 506 7709.3023 3722.093
## 507 7709.3023 3722.093
## 508 7709.3023 3722.093
## 509 7709.3023 3722.093
## 510 7709.3023 3722.093
## 511 7709.3023 3722.093
## 512 7709.3023 3722.093
## 513 7709.3023 3722.093
## 514 7709.3023 3722.093
## 515 7709.3023 3722.093
## 516 7709.3023 3722.093
## 517 7709.3023 3722.093
## 518 7709.3023 3722.093
## 519 7709.3023 3722.093
## 520 7709.3023 3722.093
## 521 7709.3023 3722.093
## 522 7709.3023 3722.093
## 523 7709.3023 3722.093
## 524 7709.3023 3722.093
## 525 7709.3023 3722.093
## 526 7709.3023 3722.093
## 527 7709.3023 3722.093
## 528 7709.3023 3722.093
## 529 3771.8023 13943.023
## 530 3771.8023 13943.023
## 531 3771.8023 13943.023
## 532 3771.8023 13943.023
## 533 3771.8023 13943.023
## 534 3771.8023 13943.023
## 535 3771.8023 13943.023
## 536 3771.8023 13943.023
## 537 3771.8023 13943.023
## 538 3771.8023 13943.023
## 539 3771.8023 13943.023
## 540 3771.8023 13943.023
## 541 3771.8023 13943.023
## 542 3771.8023 13943.023
## 543 3771.8023 13943.023
## 544 3771.8023 13943.023
## 545 3771.8023 13943.023
## 546 3771.8023 13943.023
## 547 3771.8023 13943.023
## 548 3771.8023 13943.023
## 549 3771.8023 13943.023
## 550 3771.8023 13943.023
## 551 3771.8023 13943.023
## 552 3771.8023 13943.023
## 553 2180.2326 19956.977
## 554 2180.2326 19956.977
## 555 2180.2326 19956.977
## 556 2180.2326 19956.977
## 557 2180.2326 19956.977
## 558 2180.2326 19956.977
## 559 2180.2326 19956.977
## 560 2180.2326 19956.977
## 561 2180.2326 19956.977
## 562 2180.2326 19956.977
## 563 2180.2326 19956.977
## 564 2180.2326 19956.977
## 565 2180.2326 19956.977
## 566 2180.2326 19956.977
## 567 2180.2326 19956.977
## 568 2180.2326 19956.977
## 569 2180.2326 19956.977
## 570 2180.2326 19956.977
## 571 2180.2326 19956.977
## 572 2180.2326 19956.977
## 573 2180.2326 19956.977
## 574 2180.2326 19956.977
## 575 2180.2326 19956.977
## 576 2180.2326 19956.977
## 577 217.1512 1794.767
## 578 217.1512 1794.767
## 579 217.1512 1794.767
## 580 217.1512 1794.767
## 581 217.1512 1794.767
## 582 217.1512 1794.767
## 583 217.1512 1794.767
## 584 217.1512 1794.767
## 585 217.1512 1794.767
## 586 217.1512 1794.767
## 587 217.1512 1794.767
## 588 217.1512 1794.767
## 589 217.1512 1794.767
## 590 217.1512 1794.767
## 591 217.1512 1794.767
## 592 217.1512 1794.767
## 593 217.1512 1794.767
## 594 217.1512 1794.767
## 595 217.1512 1794.767
## 596 217.1512 1794.767
## 597 217.1512 1794.767
## 598 217.1512 1794.767
## 599 217.1512 1794.767
## 600 217.1512 1794.767
## 601 1308.1395 10227.907
## 602 1308.1395 10227.907
## 603 1308.1395 10227.907
## 604 1308.1395 10227.907
## 605 1308.1395 10227.907
## 606 1308.1395 10227.907
## 607 1308.1395 10227.907
## 608 1308.1395 10227.907
## 609 1308.1395 10227.907
## 610 1308.1395 10227.907
## 611 1308.1395 10227.907
## 612 1308.1395 10227.907
## 613 1308.1395 10227.907
## 614 1308.1395 10227.907
## 615 1308.1395 10227.907
## 616 1308.1395 10227.907
## 617 1308.1395 10227.907
## 618 1308.1395 10227.907
## 619 1308.1395 10227.907
## 620 1308.1395 10227.907
## 621 1308.1395 10227.907
## 622 1308.1395 10227.907
## 623 1308.1395 10227.907
## 624 1308.1395 10227.907
## 625 1308.1395 17148.837
## 626 1308.1395 17148.837
## 627 1308.1395 17148.837
## 628 1308.1395 17148.837
## 629 1308.1395 17148.837
## 630 1308.1395 17148.837
## 631 1308.1395 17148.837
## 632 1308.1395 17148.837
## 633 1308.1395 17148.837
## 634 1308.1395 17148.837
## 635 1308.1395 17148.837
## 636 1308.1395 17148.837
## 637 1308.1395 17148.837
## 638 1308.1395 17148.837
## 639 1308.1395 17148.837
## 640 1308.1395 17148.837
## 641 1308.1395 17148.837
## 642 1308.1395 17148.837
## 643 1308.1395 17148.837
## 644 1308.1395 17148.837
## 645 1308.1395 17148.837
## 646 1308.1395 17148.837
## 647 1308.1395 17148.837
## 648 1308.1395 17148.837
## 649 2398.2558 10224.419
## 650 2398.2558 10224.419
## 651 2398.2558 10224.419
## 652 2398.2558 10224.419
## 653 2398.2558 10224.419
## 654 2398.2558 10224.419
## 655 2398.2558 10224.419
## 656 2398.2558 10224.419
## 657 2398.2558 10224.419
## 658 2398.2558 10224.419
## 659 2398.2558 10224.419
## 660 2398.2558 10224.419
## 661 2398.2558 10224.419
## 662 2398.2558 10224.419
## 663 2398.2558 10224.419
## 664 2398.2558 10224.419
## 665 2398.2558 10224.419
## 666 2398.2558 10224.419
## 667 2398.2558 10224.419
## 668 2398.2558 10224.419
## 669 2398.2558 10224.419
## 670 2398.2558 10224.419
## 671 2398.2558 10224.419
## 672 2398.2558 10224.419
## 673 4102.3256 10660.465
## 674 4102.3256 10660.465
## 675 4102.3256 10660.465
## 676 4102.3256 10660.465
## 677 4102.3256 10660.465
## 678 4102.3256 10660.465
## 679 4102.3256 10660.465
## 680 4102.3256 10660.465
## 681 4102.3256 10660.465
## 682 4102.3256 10660.465
## 683 4102.3256 10660.465
## 684 4102.3256 10660.465
## 685 4102.3256 10660.465
## 686 4102.3256 10660.465
## 687 4102.3256 10660.465
## 688 4102.3256 10660.465
## 689 4102.3256 10660.465
## 690 4102.3256 10660.465
## 691 4102.3256 10660.465
## 692 4102.3256 10660.465
## 693 4102.3256 10660.465
## 694 4102.3256 10660.465
## 695 4102.3256 10660.465
## 696 4102.3256 10660.465
## 697 4360.4651 5344.186
## 698 4360.4651 5344.186
## 699 4360.4651 5344.186
## 700 4360.4651 5344.186
## 701 4360.4651 5344.186
## 702 4360.4651 5344.186
## 703 4360.4651 5344.186
## 704 4360.4651 5344.186
## 705 4360.4651 5344.186
## 706 4360.4651 5344.186
## 707 4360.4651 5344.186
## 708 4360.4651 5344.186
## 709 4360.4651 5344.186
## 710 4360.4651 5344.186
## 711 4360.4651 5344.186
## 712 4360.4651 5344.186
## 713 4360.4651 5344.186
## 714 4360.4651 5344.186
## 715 4360.4651 5344.186
## 716 4360.4651 5344.186
## 717 4360.4651 5344.186
## 718 4360.4651 5344.186
## 719 4360.4651 5344.186
## 720 4360.4651 5344.186
## 721 1308.1395 4445.930
## 722 1308.1395 4445.930
## 723 1308.1395 4445.930
## 724 1308.1395 4445.930
## 725 1308.1395 4445.930
## 726 1308.1395 4445.930
## 727 1308.1395 4445.930
## 728 1308.1395 4445.930
## 729 1308.1395 4445.930
## 730 1308.1395 4445.930
## 731 1308.1395 4445.930
## 732 1308.1395 4445.930
## 733 1308.1395 4445.930
## 734 1308.1395 4445.930
## 735 1308.1395 4445.930
## 736 1308.1395 4445.930
## 737 1308.1395 4445.930
## 738 1308.1395 4445.930
## 739 1308.1395 4445.930
## 740 1308.1395 4445.930
## 741 1308.1395 4445.930
## 742 1308.1395 4445.930
## 743 1308.1395 4445.930
## 744 1308.1395 4445.930
## 745 2180.2326 2109.593
## 746 2180.2326 2109.593
## 747 2180.2326 2109.593
## 748 2180.2326 2109.593
## 749 2180.2326 2109.593
## 750 2180.2326 2109.593
## 751 2180.2326 2109.593
## 752 2180.2326 2109.593
## 753 2180.2326 2109.593
## 754 2180.2326 2109.593
## 755 2180.2326 2109.593
## 756 2180.2326 2109.593
## 757 2180.2326 2109.593
## 758 2180.2326 2109.593
## 759 2180.2326 2109.593
## 760 2180.2326 2109.593
## 761 2180.2326 2109.593
## 762 2180.2326 2109.593
## 763 2180.2326 2109.593
## 764 2180.2326 2109.593
## 765 2180.2326 2109.593
## 766 2180.2326 2109.593
## 767 2180.2326 2109.593
## 768 2180.2326 2109.593
## 769 217.1512 1794.767
## 770 217.1512 1794.767
## 771 217.1512 1794.767
## 772 217.1512 1794.767
## 773 217.1512 1794.767
## 774 217.1512 1794.767
## 775 217.1512 1794.767
## 776 217.1512 1794.767
## 777 217.1512 1794.767
## 778 217.1512 1794.767
## 779 217.1512 1794.767
## 780 217.1512 1794.767
## 781 217.1512 1794.767
## 782 217.1512 1794.767
## 783 217.1512 1794.767
## 784 217.1512 1794.767
## 785 217.1512 1794.767
## 786 217.1512 1794.767
## 787 217.1512 1794.767
## 788 217.1512 1794.767
## 789 217.1512 1794.767
## 790 217.1512 1794.767
## 791 217.1512 1794.767
## 792 217.1512 1794.767
## 793 1308.1395 8553.488
## 794 1308.1395 8553.488
## 795 1308.1395 8553.488
## 796 1308.1395 8553.488
## 797 1308.1395 8553.488
## 798 1308.1395 8553.488
## 799 1308.1395 8553.488
## 800 1308.1395 8553.488
## 801 1308.1395 8553.488
## 802 1308.1395 8553.488
## 803 1308.1395 8553.488
## 804 1308.1395 8553.488
## 805 1308.1395 8553.488
## 806 1308.1395 8553.488
## 807 1308.1395 8553.488
## 808 1308.1395 8553.488
## 809 1308.1395 8553.488
## 810 1308.1395 8553.488
## 811 1308.1395 8553.488
## 812 1308.1395 8553.488
## 813 1308.1395 8553.488
## 814 1308.1395 8553.488
## 815 1308.1395 8553.488
## 816 1308.1395 8553.488
## 817 2398.2558 10285.465
## 818 2398.2558 10285.465
## 819 2398.2558 10285.465
## 820 2398.2558 10285.465
## 821 2398.2558 10285.465
## 822 2398.2558 10285.465
## 823 2398.2558 10285.465
## 824 2398.2558 10285.465
## 825 2398.2558 10285.465
## 826 2398.2558 10285.465
## 827 2398.2558 10285.465
## 828 2398.2558 10285.465
## 829 2398.2558 10285.465
## 830 2398.2558 10285.465
## 831 2398.2558 10285.465
## 832 2398.2558 10285.465
## 833 2398.2558 10285.465
## 834 2398.2558 10285.465
## 835 2398.2558 10285.465
## 836 2398.2558 10285.465
## 837 2398.2558 10285.465
## 838 2398.2558 10285.465
## 839 2398.2558 10285.465
## 840 2398.2558 10285.465
## 841 2398.2558 8680.814
## 842 2398.2558 8680.814
## 843 2398.2558 8680.814
## 844 2398.2558 8680.814
## 845 2398.2558 8680.814
## 846 2398.2558 8680.814
## 847 2398.2558 8680.814
## 848 2398.2558 8680.814
## 849 2398.2558 8680.814
## 850 2398.2558 8680.814
## 851 2398.2558 8680.814
## 852 2398.2558 8680.814
## 853 2398.2558 8680.814
## 854 2398.2558 8680.814
## 855 2398.2558 8680.814
## 856 2398.2558 8680.814
## 857 2398.2558 8680.814
## 858 2398.2558 8680.814
## 859 2398.2558 8680.814
## 860 2398.2558 8680.814
## 861 2398.2558 8680.814
## 862 2398.2558 8680.814
## 863 2398.2558 8680.814
## 864 2398.2558 8680.814
## 865 1512.2093 13041.279
## 866 1512.2093 13041.279
## 867 1512.2093 13041.279
## 868 1512.2093 13041.279
## 869 1512.2093 13041.279
## 870 1512.2093 13041.279
## 871 1512.2093 13041.279
## 872 1512.2093 13041.279
## 873 1512.2093 13041.279
## 874 1512.2093 13041.279
## 875 1512.2093 13041.279
## 876 1512.2093 13041.279
## 877 1512.2093 13041.279
## 878 1512.2093 13041.279
## 879 1512.2093 13041.279
## 880 1512.2093 13041.279
## 881 1512.2093 13041.279
## 882 1512.2093 13041.279
## 883 1512.2093 13041.279
## 884 1512.2093 13041.279
## 885 1512.2093 13041.279
## 886 1512.2093 13041.279
## 887 1512.2093 13041.279
## 888 1512.2093 13041.279
## 889 2162.7907 8448.837
## 890 2162.7907 8448.837
## 891 2162.7907 8448.837
## 892 2162.7907 8448.837
## 893 2162.7907 8448.837
## 894 2162.7907 8448.837
## 895 2162.7907 8448.837
## 896 2162.7907 8448.837
## 897 2162.7907 8448.837
## 898 2162.7907 8448.837
## 899 2162.7907 8448.837
## 900 2162.7907 8448.837
## 901 2162.7907 8448.837
## 902 2162.7907 8448.837
## 903 2162.7907 8448.837
## 904 2162.7907 8448.837
## 905 2162.7907 8448.837
## 906 2162.7907 8448.837
## 907 2162.7907 8448.837
## 908 2162.7907 8448.837
## 909 2162.7907 8448.837
## 910 2162.7907 8448.837
## 911 2162.7907 8448.837
## 912 2162.7907 8448.837
## 913 4547.9651 9857.267
## 914 4547.9651 9857.267
## 915 4547.9651 9857.267
## 916 4547.9651 9857.267
## 917 4547.9651 9857.267
## 918 4547.9651 9857.267
## 919 4547.9651 9857.267
## 920 4547.9651 9857.267
## 921 4547.9651 9857.267
## 922 4547.9651 9857.267
## 923 4547.9651 9857.267
## 924 4547.9651 9857.267
## 925 4547.9651 9857.267
## 926 4547.9651 9857.267
## 927 4547.9651 9857.267
## 928 4547.9651 9857.267
## 929 4547.9651 9857.267
## 930 4547.9651 9857.267
## 931 4547.9651 9857.267
## 932 4547.9651 9857.267
## 933 4547.9651 9857.267
## 934 4547.9651 9857.267
## 935 4547.9651 9857.267
## 936 4547.9651 9857.267
## 937 3920.0581 16067.442
## 938 3920.0581 16067.442
## 939 3920.0581 16067.442
## 940 3920.0581 16067.442
## 941 3920.0581 16067.442
## 942 3920.0581 16067.442
## 943 3920.0581 16067.442
## 944 3920.0581 16067.442
## 945 3920.0581 16067.442
## 946 3920.0581 16067.442
## 947 3920.0581 16067.442
## 948 3920.0581 16067.442
## 949 3920.0581 16067.442
## 950 3920.0581 16067.442
## 951 3920.0581 16067.442
## 952 3920.0581 16067.442
## 953 3920.0581 16067.442
## 954 3920.0581 16067.442
## 955 3920.0581 16067.442
## 956 3920.0581 16067.442
## 957 3920.0581 16067.442
## 958 3920.0581 16067.442
## 959 3920.0581 16067.442
## 960 3920.0581 16067.442
## 961 217.1512 1794.767
## 962 217.1512 1794.767
## 963 217.1512 1794.767
## 964 217.1512 1794.767
## 965 217.1512 1794.767
## 966 217.1512 1794.767
## 967 217.1512 1794.767
## 968 217.1512 1794.767
## 969 217.1512 1794.767
## 970 217.1512 1794.767
## 971 217.1512 1794.767
## 972 217.1512 1794.767
## 973 217.1512 1794.767
## 974 217.1512 1794.767
## 975 217.1512 1794.767
## 976 217.1512 1794.767
## 977 217.1512 1794.767
## 978 217.1512 1794.767
## 979 217.1512 1794.767
## 980 217.1512 1794.767
## 981 217.1512 1794.767
## 982 217.1512 1794.767
## 983 217.1512 1794.767
## 984 217.1512 1794.767
## 985 819.7674 7163.372
## 986 819.7674 7163.372
## 987 819.7674 7163.372
## 988 819.7674 7163.372
## 989 819.7674 7163.372
## 990 819.7674 7163.372
## 991 819.7674 7163.372
## 992 819.7674 7163.372
## 993 819.7674 7163.372
## 994 819.7674 7163.372
## 995 819.7674 7163.372
## 996 819.7674 7163.372
## 997 819.7674 7163.372
## 998 819.7674 7163.372
## 999 819.7674 7163.372
## 1000 819.7674 7163.372
## 1001 819.7674 7163.372
## 1002 819.7674 7163.372
## 1003 819.7674 7163.372
## 1004 819.7674 7163.372
## 1005 819.7674 7163.372
## 1006 819.7674 7163.372
## 1007 819.7674 7163.372
## 1008 819.7674 7163.372
## 1009 2886.6279 15132.558
## 1010 2886.6279 15132.558
## 1011 2886.6279 15132.558
## 1012 2886.6279 15132.558
## 1013 2886.6279 15132.558
## 1014 2886.6279 15132.558
## 1015 2886.6279 15132.558
## 1016 2886.6279 15132.558
## 1017 2886.6279 15132.558
## 1018 2886.6279 15132.558
## 1019 2886.6279 15132.558
## 1020 2886.6279 15132.558
## 1021 2886.6279 15132.558
## 1022 2886.6279 15132.558
## 1023 2886.6279 15132.558
## 1024 2886.6279 15132.558
## 1025 2886.6279 15132.558
## 1026 2886.6279 15132.558
## 1027 2886.6279 15132.558
## 1028 2886.6279 15132.558
## 1029 2886.6279 15132.558
## 1030 2886.6279 15132.558
## 1031 2886.6279 15132.558
## 1032 2886.6279 15132.558
## 1033 3392.4419 8089.535
## 1034 3392.4419 8089.535
## 1035 3392.4419 8089.535
## 1036 3392.4419 8089.535
## 1037 3392.4419 8089.535
## 1038 3392.4419 8089.535
## 1039 3392.4419 8089.535
## 1040 3392.4419 8089.535
## 1041 3392.4419 8089.535
## 1042 3392.4419 8089.535
## 1043 3392.4419 8089.535
## 1044 3392.4419 8089.535
## 1045 3392.4419 8089.535
## 1046 3392.4419 8089.535
## 1047 3392.4419 8089.535
## 1048 3392.4419 8089.535
## 1049 3392.4419 8089.535
## 1050 3392.4419 8089.535
## 1051 3392.4419 8089.535
## 1052 3392.4419 8089.535
## 1053 3392.4419 8089.535
## 1054 3392.4419 8089.535
## 1055 3392.4419 8089.535
## 1056 3392.4419 8089.535
## 1057 3584.3023 9045.349
## 1058 3584.3023 9045.349
## 1059 3584.3023 9045.349
## 1060 3584.3023 9045.349
## 1061 3584.3023 9045.349
## 1062 3584.3023 9045.349
## 1063 3584.3023 9045.349
## 1064 3584.3023 9045.349
## 1065 3584.3023 9045.349
## 1066 3584.3023 9045.349
## 1067 3584.3023 9045.349
## 1068 3584.3023 9045.349
## 1069 3584.3023 9045.349
## 1070 3584.3023 9045.349
## 1071 3584.3023 9045.349
## 1072 3584.3023 9045.349
## 1073 3584.3023 9045.349
## 1074 3584.3023 9045.349
## 1075 3584.3023 9045.349
## 1076 3584.3023 9045.349
## 1077 3584.3023 9045.349
## 1078 3584.3023 9045.349
## 1079 3584.3023 9045.349
## 1080 3584.3023 9045.349
## 1081 3750.0000 9375.000
## 1082 3750.0000 9375.000
## 1083 3750.0000 9375.000
## 1084 3750.0000 9375.000
## 1085 3750.0000 9375.000
## 1086 3750.0000 9375.000
## 1087 3750.0000 9375.000
## 1088 3750.0000 9375.000
## 1089 3750.0000 9375.000
## 1090 3750.0000 9375.000
## 1091 3750.0000 9375.000
## 1092 3750.0000 9375.000
## 1093 3750.0000 9375.000
## 1094 3750.0000 9375.000
## 1095 3750.0000 9375.000
## 1096 3750.0000 9375.000
## 1097 3750.0000 9375.000
## 1098 3750.0000 9375.000
## 1099 3750.0000 9375.000
## 1100 3750.0000 9375.000
## 1101 3750.0000 9375.000
## 1102 3750.0000 9375.000
## 1103 3750.0000 9375.000
## 1104 3750.0000 9375.000
## 1105 2768.8953 15687.209
## 1106 2768.8953 15687.209
## 1107 2768.8953 15687.209
## 1108 2768.8953 15687.209
## 1109 2768.8953 15687.209
## 1110 2768.8953 15687.209
## 1111 2768.8953 15687.209
## 1112 2768.8953 15687.209
## 1113 2768.8953 15687.209
## 1114 2768.8953 15687.209
## 1115 2768.8953 15687.209
## 1116 2768.8953 15687.209
## 1117 2768.8953 15687.209
## 1118 2768.8953 15687.209
## 1119 2768.8953 15687.209
## 1120 2768.8953 15687.209
## 1121 2768.8953 15687.209
## 1122 2768.8953 15687.209
## 1123 2768.8953 15687.209
## 1124 2768.8953 15687.209
## 1125 2768.8953 15687.209
## 1126 2768.8953 15687.209
## 1127 2768.8953 15687.209
## 1128 2768.8953 15687.209
## 1129 1748.5465 15361.047
## 1130 1748.5465 15361.047
## 1131 1748.5465 15361.047
## 1132 1748.5465 15361.047
## 1133 1748.5465 15361.047
## 1134 1748.5465 15361.047
## 1135 1748.5465 15361.047
## 1136 1748.5465 15361.047
## 1137 1748.5465 15361.047
## 1138 1748.5465 15361.047
## 1139 1748.5465 15361.047
## 1140 1748.5465 15361.047
## 1141 1748.5465 15361.047
## 1142 1748.5465 15361.047
## 1143 1748.5465 15361.047
## 1144 1748.5465 15361.047
## 1145 1748.5465 15361.047
## 1146 1748.5465 15361.047
## 1147 1748.5465 15361.047
## 1148 1748.5465 15361.047
## 1149 1748.5465 15361.047
## 1150 1748.5465 15361.047
## 1151 1748.5465 15361.047
## 1152 1748.5465 15361.047
## 1153 217.1512 1794.767
## 1154 217.1512 1794.767
## 1155 217.1512 1794.767
## 1156 217.1512 1794.767
## 1157 217.1512 1794.767
## 1158 217.1512 1794.767
## 1159 217.1512 1794.767
## 1160 217.1512 1794.767
## 1161 217.1512 1794.767
## 1162 217.1512 1794.767
## 1163 217.1512 1794.767
## 1164 217.1512 1794.767
## 1165 217.1512 1794.767
## 1166 217.1512 1794.767
## 1167 217.1512 1794.767
## 1168 217.1512 1794.767
## 1169 217.1512 1794.767
## 1170 217.1512 1794.767
## 1171 217.1512 1794.767
## 1172 217.1512 1794.767
## 1173 217.1512 1794.767
## 1174 217.1512 1794.767
## 1175 217.1512 1794.767
## 1176 217.1512 1794.767
## 1177 5319.7674 8802.907
## 1178 5319.7674 8802.907
## 1179 5319.7674 8802.907
## 1180 5319.7674 8802.907
## 1181 5319.7674 8802.907
## 1182 5319.7674 8802.907
## 1183 5319.7674 8802.907
## 1184 5319.7674 8802.907
## 1185 5319.7674 8802.907
## 1186 5319.7674 8802.907
## 1187 5319.7674 8802.907
## 1188 5319.7674 8802.907
## 1189 5319.7674 8802.907
## 1190 5319.7674 8802.907
## 1191 5319.7674 8802.907
## 1192 5319.7674 8802.907
## 1193 5319.7674 8802.907
## 1194 5319.7674 8802.907
## 1195 5319.7674 8802.907
## 1196 5319.7674 8802.907
## 1197 5319.7674 8802.907
## 1198 5319.7674 8802.907
## 1199 5319.7674 8802.907
## 1200 5319.7674 8802.907
## 1201 3392.4419 16022.093
## 1202 3392.4419 16022.093
## 1203 3392.4419 16022.093
## 1204 3392.4419 16022.093
## 1205 3392.4419 16022.093
## 1206 3392.4419 16022.093
## 1207 3392.4419 16022.093
## 1208 3392.4419 16022.093
## 1209 3392.4419 16022.093
## 1210 3392.4419 16022.093
## 1211 3392.4419 16022.093
## 1212 3392.4419 16022.093
## 1213 3392.4419 16022.093
## 1214 3392.4419 16022.093
## 1215 3392.4419 16022.093
## 1216 3392.4419 16022.093
## 1217 3392.4419 16022.093
## 1218 3392.4419 16022.093
## 1219 3392.4419 16022.093
## 1220 3392.4419 16022.093
## 1221 3392.4419 16022.093
## 1222 3392.4419 16022.093
## 1223 3392.4419 16022.093
## 1224 3392.4419 16022.093
## 1225 4970.9302 16409.302
## 1226 4970.9302 16409.302
## 1227 4970.9302 16409.302
## 1228 4970.9302 16409.302
## 1229 4970.9302 16409.302
## 1230 4970.9302 16409.302
## 1231 4970.9302 16409.302
## 1232 4970.9302 16409.302
## 1233 4970.9302 16409.302
## 1234 4970.9302 16409.302
## 1235 4970.9302 16409.302
## 1236 4970.9302 16409.302
## 1237 4970.9302 16409.302
## 1238 4970.9302 16409.302
## 1239 4970.9302 16409.302
## 1240 4970.9302 16409.302
## 1241 4970.9302 16409.302
## 1242 4970.9302 16409.302
## 1243 4970.9302 16409.302
## 1244 4970.9302 16409.302
## 1245 4970.9302 16409.302
## 1246 4970.9302 16409.302
## 1247 4970.9302 16409.302
## 1248 4970.9302 16409.302
## 1249 3008.7209 12725.581
## 1250 3008.7209 12725.581
## 1251 3008.7209 12725.581
## 1252 3008.7209 12725.581
## 1253 3008.7209 12725.581
## 1254 3008.7209 12725.581
## 1255 3008.7209 12725.581
## 1256 3008.7209 12725.581
## 1257 3008.7209 12725.581
## 1258 3008.7209 12725.581
## 1259 3008.7209 12725.581
## 1260 3008.7209 12725.581
## 1261 3008.7209 12725.581
## 1262 3008.7209 12725.581
## 1263 3008.7209 12725.581
## 1264 3008.7209 12725.581
## 1265 3008.7209 12725.581
## 1266 3008.7209 12725.581
## 1267 3008.7209 12725.581
## 1268 3008.7209 12725.581
## 1269 3008.7209 12725.581
## 1270 3008.7209 12725.581
## 1271 3008.7209 12725.581
## 1272 3008.7209 12725.581
## 1273 2659.8837 7805.233
## 1274 2659.8837 7805.233
## 1275 2659.8837 7805.233
## 1276 2659.8837 7805.233
## 1277 2659.8837 7805.233
## 1278 2659.8837 7805.233
## 1279 2659.8837 7805.233
## 1280 2659.8837 7805.233
## 1281 2659.8837 7805.233
## 1282 2659.8837 7805.233
## 1283 2659.8837 7805.233
## 1284 2659.8837 7805.233
## 1285 2659.8837 7805.233
## 1286 2659.8837 7805.233
## 1287 2659.8837 7805.233
## 1288 2659.8837 7805.233
## 1289 2659.8837 7805.233
## 1290 2659.8837 7805.233
## 1291 2659.8837 7805.233
## 1292 2659.8837 7805.233
## 1293 2659.8837 7805.233
## 1294 2659.8837 7805.233
## 1295 2659.8837 7805.233
## 1296 2659.8837 7805.233
## 1297 4765.9884 12434.302
## 1298 4765.9884 12434.302
## 1299 4765.9884 12434.302
## 1300 4765.9884 12434.302
## 1301 4765.9884 12434.302
## 1302 4765.9884 12434.302
## 1303 4765.9884 12434.302
## 1304 4765.9884 12434.302
## 1305 4765.9884 12434.302
## 1306 4765.9884 12434.302
## 1307 4765.9884 12434.302
## 1308 4765.9884 12434.302
## 1309 4765.9884 12434.302
## 1310 4765.9884 12434.302
## 1311 4765.9884 12434.302
## 1312 4765.9884 12434.302
## 1313 4765.9884 12434.302
## 1314 4765.9884 12434.302
## 1315 4765.9884 12434.302
## 1316 4765.9884 12434.302
## 1317 4765.9884 12434.302
## 1318 4765.9884 12434.302
## 1319 4765.9884 12434.302
## 1320 4765.9884 12434.302
## 1321 2376.4535 10377.035
## 1322 2376.4535 10377.035
## 1323 2376.4535 10377.035
## 1324 2376.4535 10377.035
## 1325 2376.4535 10377.035
## 1326 2376.4535 10377.035
## 1327 2376.4535 10377.035
## 1328 2376.4535 10377.035
## 1329 2376.4535 10377.035
## 1330 2376.4535 10377.035
## 1331 2376.4535 10377.035
## 1332 2376.4535 10377.035
## 1333 2376.4535 10377.035
## 1334 2376.4535 10377.035
## 1335 2376.4535 10377.035
## 1336 2376.4535 10377.035
## 1337 2376.4535 10377.035
## 1338 2376.4535 10377.035
## 1339 2376.4535 10377.035
## 1340 2376.4535 10377.035
## 1341 2376.4535 10377.035
## 1342 2376.4535 10377.035
## 1343 2376.4535 10377.035
## 1344 2376.4535 10377.035
## 1345 217.1512 1794.767
## 1346 217.1512 1794.767
## 1347 217.1512 1794.767
## 1348 217.1512 1794.767
## 1349 217.1512 1794.767
## 1350 217.1512 1794.767
## 1351 217.1512 1794.767
## 1352 217.1512 1794.767
## 1353 217.1512 1794.767
## 1354 217.1512 1794.767
## 1355 217.1512 1794.767
## 1356 217.1512 1794.767
## 1357 217.1512 1794.767
## 1358 217.1512 1794.767
## 1359 217.1512 1794.767
## 1360 217.1512 1794.767
## 1361 217.1512 1794.767
## 1362 217.1512 1794.767
## 1363 217.1512 1794.767
## 1364 217.1512 1794.767
## 1365 217.1512 1794.767
## 1366 217.1512 1794.767
## 1367 217.1512 1794.767
## 1368 217.1512 1794.767
## 1369 3270.3488 7451.163
## 1370 3270.3488 7451.163
## 1371 3270.3488 7451.163
## 1372 3270.3488 7451.163
## 1373 3270.3488 7451.163
## 1374 3270.3488 7451.163
## 1375 3270.3488 7451.163
## 1376 3270.3488 7451.163
## 1377 3270.3488 7451.163
## 1378 3270.3488 7451.163
## 1379 3270.3488 7451.163
## 1380 3270.3488 7451.163
## 1381 3270.3488 7451.163
## 1382 3270.3488 7451.163
## 1383 3270.3488 7451.163
## 1384 3270.3488 7451.163
## 1385 3270.3488 7451.163
## 1386 3270.3488 7451.163
## 1387 3270.3488 7451.163
## 1388 3270.3488 7451.163
## 1389 3270.3488 7451.163
## 1390 3270.3488 7451.163
## 1391 3270.3488 7451.163
## 1392 3270.3488 7451.163
## 1393 4203.4884 16135.465
## 1394 4203.4884 16135.465
## 1395 4203.4884 16135.465
## 1396 4203.4884 16135.465
## 1397 4203.4884 16135.465
## 1398 4203.4884 16135.465
## 1399 4203.4884 16135.465
## 1400 4203.4884 16135.465
## 1401 4203.4884 16135.465
## 1402 4203.4884 16135.465
## 1403 4203.4884 16135.465
## 1404 4203.4884 16135.465
## 1405 4203.4884 16135.465
## 1406 4203.4884 16135.465
## 1407 4203.4884 16135.465
## 1408 4203.4884 16135.465
## 1409 4203.4884 16135.465
## 1410 4203.4884 16135.465
## 1411 4203.4884 16135.465
## 1412 4203.4884 16135.465
## 1413 4203.4884 16135.465
## 1414 4203.4884 16135.465
## 1415 4203.4884 16135.465
## 1416 4203.4884 16135.465
## 1417 4709.3023 8307.558
## 1418 4709.3023 8307.558
## 1419 4709.3023 8307.558
## 1420 4709.3023 8307.558
## 1421 4709.3023 8307.558
## 1422 4709.3023 8307.558
## 1423 4709.3023 8307.558
## 1424 4709.3023 8307.558
## 1425 4709.3023 8307.558
## 1426 4709.3023 8307.558
## 1427 4709.3023 8307.558
## 1428 4709.3023 8307.558
## 1429 4709.3023 8307.558
## 1430 4709.3023 8307.558
## 1431 4709.3023 8307.558
## 1432 4709.3023 8307.558
## 1433 4709.3023 8307.558
## 1434 4709.3023 8307.558
## 1435 4709.3023 8307.558
## 1436 4709.3023 8307.558
## 1437 4709.3023 8307.558
## 1438 4709.3023 8307.558
## 1439 4709.3023 8307.558
## 1440 4709.3023 8307.558
## 1441 5345.9302 10449.419
## 1442 5345.9302 10449.419
## 1443 5345.9302 10449.419
## 1444 5345.9302 10449.419
## 1445 5345.9302 10449.419
## 1446 5345.9302 10449.419
## 1447 5345.9302 10449.419
## 1448 5345.9302 10449.419
## 1449 5345.9302 10449.419
## 1450 5345.9302 10449.419
## 1451 5345.9302 10449.419
## 1452 5345.9302 10449.419
## 1453 5345.9302 10449.419
## 1454 5345.9302 10449.419
## 1455 5345.9302 10449.419
## 1456 5345.9302 10449.419
## 1457 5345.9302 10449.419
## 1458 5345.9302 10449.419
## 1459 5345.9302 10449.419
## 1460 5345.9302 10449.419
## 1461 5345.9302 10449.419
## 1462 5345.9302 10449.419
## 1463 5345.9302 10449.419
## 1464 5345.9302 10449.419
## 1465 7709.3023 3279.070
## 1466 7709.3023 3279.070
## 1467 7709.3023 3279.070
## 1468 7709.3023 3279.070
## 1469 7709.3023 3279.070
## 1470 7709.3023 3279.070
## 1471 7709.3023 3279.070
## 1472 7709.3023 3279.070
## 1473 7709.3023 3279.070
## 1474 7709.3023 3279.070
## 1475 7709.3023 3279.070
## 1476 7709.3023 3279.070
## 1477 7709.3023 3279.070
## 1478 7709.3023 3279.070
## 1479 7709.3023 3279.070
## 1480 7709.3023 3279.070
## 1481 7709.3023 3279.070
## 1482 7709.3023 3279.070
## 1483 7709.3023 3279.070
## 1484 7709.3023 3279.070
## 1485 7709.3023 3279.070
## 1486 7709.3023 3279.070
## 1487 7709.3023 3279.070
## 1488 7709.3023 3279.070
## 1489 3553.7791 13829.651
## 1490 3553.7791 13829.651
## 1491 3553.7791 13829.651
## 1492 3553.7791 13829.651
## 1493 3553.7791 13829.651
## 1494 3553.7791 13829.651
## 1495 3553.7791 13829.651
## 1496 3553.7791 13829.651
## 1497 3553.7791 13829.651
## 1498 3553.7791 13829.651
## 1499 3553.7791 13829.651
## 1500 3553.7791 13829.651
## 1501 3553.7791 13829.651
## 1502 3553.7791 13829.651
## 1503 3553.7791 13829.651
## 1504 3553.7791 13829.651
## 1505 3553.7791 13829.651
## 1506 3553.7791 13829.651
## 1507 3553.7791 13829.651
## 1508 3553.7791 13829.651
## 1509 3553.7791 13829.651
## 1510 3553.7791 13829.651
## 1511 3553.7791 13829.651
## 1512 3553.7791 13829.651
## 1513 2180.2326 19895.930
## 1514 2180.2326 19895.930
## 1515 2180.2326 19895.930
## 1516 2180.2326 19895.930
## 1517 2180.2326 19895.930
## 1518 2180.2326 19895.930
## 1519 2180.2326 19895.930
## 1520 2180.2326 19895.930
## 1521 2180.2326 19895.930
## 1522 2180.2326 19895.930
## 1523 2180.2326 19895.930
## 1524 2180.2326 19895.930
## 1525 2180.2326 19895.930
## 1526 2180.2326 19895.930
## 1527 2180.2326 19895.930
## 1528 2180.2326 19895.930
## 1529 2180.2326 19895.930
## 1530 2180.2326 19895.930
## 1531 2180.2326 19895.930
## 1532 2180.2326 19895.930
## 1533 2180.2326 19895.930
## 1534 2180.2326 19895.930
## 1535 2180.2326 19895.930
## 1536 2180.2326 19895.930
## 1537 217.1512 1794.767
## 1538 217.1512 1794.767
## 1539 217.1512 1794.767
## 1540 217.1512 1794.767
## 1541 217.1512 1794.767
## 1542 217.1512 1794.767
## 1543 217.1512 1794.767
## 1544 217.1512 1794.767
## 1545 217.1512 1794.767
## 1546 217.1512 1794.767
## 1547 217.1512 1794.767
## 1548 217.1512 1794.767
## 1549 217.1512 1794.767
## 1550 217.1512 1794.767
## 1551 217.1512 1794.767
## 1552 217.1512 1794.767
## 1553 217.1512 1794.767
## 1554 217.1512 1794.767
## 1555 217.1512 1794.767
## 1556 217.1512 1794.767
## 1557 217.1512 1794.767
## 1558 217.1512 1794.767
## 1559 217.1512 1794.767
## 1560 217.1512 1794.767
## 1561 1090.1163 9334.884
## 1562 1090.1163 9334.884
## 1563 1090.1163 9334.884
## 1564 1090.1163 9334.884
## 1565 1090.1163 9334.884
## 1566 1090.1163 9334.884
## 1567 1090.1163 9334.884
## 1568 1090.1163 9334.884
## 1569 1090.1163 9334.884
## 1570 1090.1163 9334.884
## 1571 1090.1163 9334.884
## 1572 1090.1163 9334.884
## 1573 1090.1163 9334.884
## 1574 1090.1163 9334.884
## 1575 1090.1163 9334.884
## 1576 1090.1163 9334.884
## 1577 1090.1163 9334.884
## 1578 1090.1163 9334.884
## 1579 1090.1163 9334.884
## 1580 1090.1163 9334.884
## 1581 1090.1163 9334.884
## 1582 1090.1163 9334.884
## 1583 1090.1163 9334.884
## 1584 1090.1163 9334.884
## 1585 1796.5116 20522.093
## 1586 1796.5116 20522.093
## 1587 1796.5116 20522.093
## 1588 1796.5116 20522.093
## 1589 1796.5116 20522.093
## 1590 1796.5116 20522.093
## 1591 1796.5116 20522.093
## 1592 1796.5116 20522.093
## 1593 1796.5116 20522.093
## 1594 1796.5116 20522.093
## 1595 1796.5116 20522.093
## 1596 1796.5116 20522.093
## 1597 1796.5116 20522.093
## 1598 1796.5116 20522.093
## 1599 1796.5116 20522.093
## 1600 1796.5116 20522.093
## 1601 1796.5116 20522.093
## 1602 1796.5116 20522.093
## 1603 1796.5116 20522.093
## 1604 1796.5116 20522.093
## 1605 1796.5116 20522.093
## 1606 1796.5116 20522.093
## 1607 1796.5116 20522.093
## 1608 1796.5116 20522.093
## 1609 2616.2791 11761.047
## 1610 2616.2791 11761.047
## 1611 2616.2791 11761.047
## 1612 2616.2791 11761.047
## 1613 2616.2791 11761.047
## 1614 2616.2791 11761.047
## 1615 2616.2791 11761.047
## 1616 2616.2791 11761.047
## 1617 2616.2791 11761.047
## 1618 2616.2791 11761.047
## 1619 2616.2791 11761.047
## 1620 2616.2791 11761.047
## 1621 2616.2791 11761.047
## 1622 2616.2791 11761.047
## 1623 2616.2791 11761.047
## 1624 2616.2791 11761.047
## 1625 2616.2791 11761.047
## 1626 2616.2791 11761.047
## 1627 2616.2791 11761.047
## 1628 2616.2791 11761.047
## 1629 2616.2791 11761.047
## 1630 2616.2791 11761.047
## 1631 2616.2791 11761.047
## 1632 2616.2791 11761.047
## 1633 3680.2326 10379.651
## 1634 3680.2326 10379.651
## 1635 3680.2326 10379.651
## 1636 3680.2326 10379.651
## 1637 3680.2326 10379.651
## 1638 3680.2326 10379.651
## 1639 3680.2326 10379.651
## 1640 3680.2326 10379.651
## 1641 3680.2326 10379.651
## 1642 3680.2326 10379.651
## 1643 3680.2326 10379.651
## 1644 3680.2326 10379.651
## 1645 3680.2326 10379.651
## 1646 3680.2326 10379.651
## 1647 3680.2326 10379.651
## 1648 3680.2326 10379.651
## 1649 3680.2326 10379.651
## 1650 3680.2326 10379.651
## 1651 3680.2326 10379.651
## 1652 3680.2326 10379.651
## 1653 3680.2326 10379.651
## 1654 3680.2326 10379.651
## 1655 3680.2326 10379.651
## 1656 3680.2326 10379.651
## 1657 4360.4651 4901.163
## 1658 4360.4651 4901.163
## 1659 4360.4651 4901.163
## 1660 4360.4651 4901.163
## 1661 4360.4651 4901.163
## 1662 4360.4651 4901.163
## 1663 4360.4651 4901.163
## 1664 4360.4651 4901.163
## 1665 4360.4651 4901.163
## 1666 4360.4651 4901.163
## 1667 4360.4651 4901.163
## 1668 4360.4651 4901.163
## 1669 4360.4651 4901.163
## 1670 4360.4651 4901.163
## 1671 4360.4651 4901.163
## 1672 4360.4651 4901.163
## 1673 4360.4651 4901.163
## 1674 4360.4651 4901.163
## 1675 4360.4651 4901.163
## 1676 4360.4651 4901.163
## 1677 4360.4651 4901.163
## 1678 4360.4651 4901.163
## 1679 4360.4651 4901.163
## 1680 4360.4651 4901.163
## 1681 1090.1163 4332.558
## 1682 1090.1163 4332.558
## 1683 1090.1163 4332.558
## 1684 1090.1163 4332.558
## 1685 1090.1163 4332.558
## 1686 1090.1163 4332.558
## 1687 1090.1163 4332.558
## 1688 1090.1163 4332.558
## 1689 1090.1163 4332.558
## 1690 1090.1163 4332.558
## 1691 1090.1163 4332.558
## 1692 1090.1163 4332.558
## 1693 1090.1163 4332.558
## 1694 1090.1163 4332.558
## 1695 1090.1163 4332.558
## 1696 1090.1163 4332.558
## 1697 1090.1163 4332.558
## 1698 1090.1163 4332.558
## 1699 1090.1163 4332.558
## 1700 1090.1163 4332.558
## 1701 1090.1163 4332.558
## 1702 1090.1163 4332.558
## 1703 1090.1163 4332.558
## 1704 1090.1163 4332.558
## 1705 2180.2326 2048.547
## 1706 2180.2326 2048.547
## 1707 2180.2326 2048.547
## 1708 2180.2326 2048.547
## 1709 2180.2326 2048.547
## 1710 2180.2326 2048.547
## 1711 2180.2326 2048.547
## 1712 2180.2326 2048.547
## 1713 2180.2326 2048.547
## 1714 2180.2326 2048.547
## 1715 2180.2326 2048.547
## 1716 2180.2326 2048.547
## 1717 2180.2326 2048.547
## 1718 2180.2326 2048.547
## 1719 2180.2326 2048.547
## 1720 2180.2326 2048.547
## 1721 2180.2326 2048.547
## 1722 2180.2326 2048.547
## 1723 2180.2326 2048.547
## 1724 2180.2326 2048.547
## 1725 2180.2326 2048.547
## 1726 2180.2326 2048.547
## 1727 2180.2326 2048.547
## 1728 2180.2326 2048.547
## 1729 217.1512 1794.767
## 1730 217.1512 1794.767
## 1731 217.1512 1794.767
## 1732 217.1512 1794.767
## 1733 217.1512 1794.767
## 1734 217.1512 1794.767
## 1735 217.1512 1794.767
## 1736 217.1512 1794.767
## 1737 217.1512 1794.767
## 1738 217.1512 1794.767
## 1739 217.1512 1794.767
## 1740 217.1512 1794.767
## 1741 217.1512 1794.767
## 1742 217.1512 1794.767
## 1743 217.1512 1794.767
## 1744 217.1512 1794.767
## 1745 217.1512 1794.767
## 1746 217.1512 1794.767
## 1747 217.1512 1794.767
## 1748 217.1512 1794.767
## 1749 217.1512 1794.767
## 1750 217.1512 1794.767
## 1751 217.1512 1794.767
## 1752 217.1512 1794.767
## 1753 1090.1163 7660.465
## 1754 1090.1163 7660.465
## 1755 1090.1163 7660.465
## 1756 1090.1163 7660.465
## 1757 1090.1163 7660.465
## 1758 1090.1163 7660.465
## 1759 1090.1163 7660.465
## 1760 1090.1163 7660.465
## 1761 1090.1163 7660.465
## 1762 1090.1163 7660.465
## 1763 1090.1163 7660.465
## 1764 1090.1163 7660.465
## 1765 1090.1163 7660.465
## 1766 1090.1163 7660.465
## 1767 1090.1163 7660.465
## 1768 1090.1163 7660.465
## 1769 1090.1163 7660.465
## 1770 1090.1163 7660.465
## 1771 1090.1163 7660.465
## 1772 1090.1163 7660.465
## 1773 1090.1163 7660.465
## 1774 1090.1163 7660.465
## 1775 1090.1163 7660.465
## 1776 1090.1163 7660.465
## 1777 2886.6279 13658.721
## 1778 2886.6279 13658.721
## 1779 2886.6279 13658.721
## 1780 2886.6279 13658.721
## 1781 2886.6279 13658.721
## 1782 2886.6279 13658.721
## 1783 2886.6279 13658.721
## 1784 2886.6279 13658.721
## 1785 2886.6279 13658.721
## 1786 2886.6279 13658.721
## 1787 2886.6279 13658.721
## 1788 2886.6279 13658.721
## 1789 2886.6279 13658.721
## 1790 2886.6279 13658.721
## 1791 2886.6279 13658.721
## 1792 2886.6279 13658.721
## 1793 2886.6279 13658.721
## 1794 2886.6279 13658.721
## 1795 2886.6279 13658.721
## 1796 2886.6279 13658.721
## 1797 2886.6279 13658.721
## 1798 2886.6279 13658.721
## 1799 2886.6279 13658.721
## 1800 2886.6279 13658.721
## 1801 2616.2791 10217.442
## 1802 2616.2791 10217.442
## 1803 2616.2791 10217.442
## 1804 2616.2791 10217.442
## 1805 2616.2791 10217.442
## 1806 2616.2791 10217.442
## 1807 2616.2791 10217.442
## 1808 2616.2791 10217.442
## 1809 2616.2791 10217.442
## 1810 2616.2791 10217.442
## 1811 2616.2791 10217.442
## 1812 2616.2791 10217.442
## 1813 2616.2791 10217.442
## 1814 2616.2791 10217.442
## 1815 2616.2791 10217.442
## 1816 2616.2791 10217.442
## 1817 2616.2791 10217.442
## 1818 2616.2791 10217.442
## 1819 2616.2791 10217.442
## 1820 2616.2791 10217.442
## 1821 2616.2791 10217.442
## 1822 2616.2791 10217.442
## 1823 2616.2791 10217.442
## 1824 2616.2791 10217.442
## 1825 1090.1163 12760.465
## 1826 1090.1163 12760.465
## 1827 1090.1163 12760.465
## 1828 1090.1163 12760.465
## 1829 1090.1163 12760.465
## 1830 1090.1163 12760.465
## 1831 1090.1163 12760.465
## 1832 1090.1163 12760.465
## 1833 1090.1163 12760.465
## 1834 1090.1163 12760.465
## 1835 1090.1163 12760.465
## 1836 1090.1163 12760.465
## 1837 1090.1163 12760.465
## 1838 1090.1163 12760.465
## 1839 1090.1163 12760.465
## 1840 1090.1163 12760.465
## 1841 1090.1163 12760.465
## 1842 1090.1163 12760.465
## 1843 1090.1163 12760.465
## 1844 1090.1163 12760.465
## 1845 1090.1163 12760.465
## 1846 1090.1163 12760.465
## 1847 1090.1163 12760.465
## 1848 1090.1163 12760.465
## 1849 2162.7907 8005.814
## 1850 2162.7907 8005.814
## 1851 2162.7907 8005.814
## 1852 2162.7907 8005.814
## 1853 2162.7907 8005.814
## 1854 2162.7907 8005.814
## 1855 2162.7907 8005.814
## 1856 2162.7907 8005.814
## 1857 2162.7907 8005.814
## 1858 2162.7907 8005.814
## 1859 2162.7907 8005.814
## 1860 2162.7907 8005.814
## 1861 2162.7907 8005.814
## 1862 2162.7907 8005.814
## 1863 2162.7907 8005.814
## 1864 2162.7907 8005.814
## 1865 2162.7907 8005.814
## 1866 2162.7907 8005.814
## 1867 2162.7907 8005.814
## 1868 2162.7907 8005.814
## 1869 2162.7907 8005.814
## 1870 2162.7907 8005.814
## 1871 2162.7907 8005.814
## 1872 2162.7907 8005.814
## 1873 4329.9419 9743.895
## 1874 4329.9419 9743.895
## 1875 4329.9419 9743.895
## 1876 4329.9419 9743.895
## 1877 4329.9419 9743.895
## 1878 4329.9419 9743.895
## 1879 4329.9419 9743.895
## 1880 4329.9419 9743.895
## 1881 4329.9419 9743.895
## 1882 4329.9419 9743.895
## 1883 4329.9419 9743.895
## 1884 4329.9419 9743.895
## 1885 4329.9419 9743.895
## 1886 4329.9419 9743.895
## 1887 4329.9419 9743.895
## 1888 4329.9419 9743.895
## 1889 4329.9419 9743.895
## 1890 4329.9419 9743.895
## 1891 4329.9419 9743.895
## 1892 4329.9419 9743.895
## 1893 4329.9419 9743.895
## 1894 4329.9419 9743.895
## 1895 4329.9419 9743.895
## 1896 4329.9419 9743.895
## 1897 3920.0581 16006.395
## 1898 3920.0581 16006.395
## 1899 3920.0581 16006.395
## 1900 3920.0581 16006.395
## 1901 3920.0581 16006.395
## 1902 3920.0581 16006.395
## 1903 3920.0581 16006.395
## 1904 3920.0581 16006.395
## 1905 3920.0581 16006.395
## 1906 3920.0581 16006.395
## 1907 3920.0581 16006.395
## 1908 3920.0581 16006.395
## 1909 3920.0581 16006.395
## 1910 3920.0581 16006.395
## 1911 3920.0581 16006.395
## 1912 3920.0581 16006.395
## 1913 3920.0581 16006.395
## 1914 3920.0581 16006.395
## 1915 3920.0581 16006.395
## 1916 3920.0581 16006.395
## 1917 3920.0581 16006.395
## 1918 3920.0581 16006.395
## 1919 3920.0581 16006.395
## 1920 3920.0581 16006.395
## 1921 217.1512 1794.767
## 1922 217.1512 1794.767
## 1923 217.1512 1794.767
## 1924 217.1512 1794.767
## 1925 217.1512 1794.767
## 1926 217.1512 1794.767
## 1927 217.1512 1794.767
## 1928 217.1512 1794.767
## 1929 217.1512 1794.767
## 1930 217.1512 1794.767
## 1931 217.1512 1794.767
## 1932 217.1512 1794.767
## 1933 217.1512 1794.767
## 1934 217.1512 1794.767
## 1935 217.1512 1794.767
## 1936 217.1512 1794.767
## 1937 217.1512 1794.767
## 1938 217.1512 1794.767
## 1939 217.1512 1794.767
## 1940 217.1512 1794.767
## 1941 217.1512 1794.767
## 1942 217.1512 1794.767
## 1943 217.1512 1794.767
## 1944 217.1512 1794.767
## 1945 1473.8372 7573.256
## 1946 1473.8372 7573.256
## 1947 1473.8372 7573.256
## 1948 1473.8372 7573.256
## 1949 1473.8372 7573.256
## 1950 1473.8372 7573.256
## 1951 1473.8372 7573.256
## 1952 1473.8372 7573.256
## 1953 1473.8372 7573.256
## 1954 1473.8372 7573.256
## 1955 1473.8372 7573.256
## 1956 1473.8372 7573.256
## 1957 1473.8372 7573.256
## 1958 1473.8372 7573.256
## 1959 1473.8372 7573.256
## 1960 1473.8372 7573.256
## 1961 1473.8372 7573.256
## 1962 1473.8372 7573.256
## 1963 1473.8372 7573.256
## 1964 1473.8372 7573.256
## 1965 1473.8372 7573.256
## 1966 1473.8372 7573.256
## 1967 1473.8372 7573.256
## 1968 1473.8372 7573.256
## 1969 2502.9070 11834.302
## 1970 2502.9070 11834.302
## 1971 2502.9070 11834.302
## 1972 2502.9070 11834.302
## 1973 2502.9070 11834.302
## 1974 2502.9070 11834.302
## 1975 2502.9070 11834.302
## 1976 2502.9070 11834.302
## 1977 2502.9070 11834.302
## 1978 2502.9070 11834.302
## 1979 2502.9070 11834.302
## 1980 2502.9070 11834.302
## 1981 2502.9070 11834.302
## 1982 2502.9070 11834.302
## 1983 2502.9070 11834.302
## 1984 2502.9070 11834.302
## 1985 2502.9070 11834.302
## 1986 2502.9070 11834.302
## 1987 2502.9070 11834.302
## 1988 2502.9070 11834.302
## 1989 2502.9070 11834.302
## 1990 2502.9070 11834.302
## 1991 2502.9070 11834.302
## 1992 2502.9070 11834.302
## 1993 3388.9535 8497.674
## 1994 3388.9535 8497.674
## 1995 3388.9535 8497.674
## 1996 3388.9535 8497.674
## 1997 3388.9535 8497.674
## 1998 3388.9535 8497.674
## 1999 3388.9535 8497.674
## 2000 3388.9535 8497.674
## 2001 3388.9535 8497.674
## 2002 3388.9535 8497.674
## 2003 3388.9535 8497.674
## 2004 3388.9535 8497.674
## 2005 3388.9535 8497.674
## 2006 3388.9535 8497.674
## 2007 3388.9535 8497.674
## 2008 3388.9535 8497.674
## 2009 3388.9535 8497.674
## 2010 3388.9535 8497.674
## 2011 3388.9535 8497.674
## 2012 3388.9535 8497.674
## 2013 3388.9535 8497.674
## 2014 3388.9535 8497.674
## 2015 3388.9535 8497.674
## 2016 3388.9535 8497.674
## 2017 3584.3023 9950.581
## 2018 3584.3023 9950.581
## 2019 3584.3023 9950.581
## 2020 3584.3023 9950.581
## 2021 3584.3023 9950.581
## 2022 3584.3023 9950.581
## 2023 3584.3023 9950.581
## 2024 3584.3023 9950.581
## 2025 3584.3023 9950.581
## 2026 3584.3023 9950.581
## 2027 3584.3023 9950.581
## 2028 3584.3023 9950.581
## 2029 3584.3023 9950.581
## 2030 3584.3023 9950.581
## 2031 3584.3023 9950.581
## 2032 3584.3023 9950.581
## 2033 3584.3023 9950.581
## 2034 3584.3023 9950.581
## 2035 3584.3023 9950.581
## 2036 3584.3023 9950.581
## 2037 3584.3023 9950.581
## 2038 3584.3023 9950.581
## 2039 3584.3023 9950.581
## 2040 3584.3023 9950.581
## 2041 3750.0000 9680.233
## 2042 3750.0000 9680.233
## 2043 3750.0000 9680.233
## 2044 3750.0000 9680.233
## 2045 3750.0000 9680.233
## 2046 3750.0000 9680.233
## 2047 3750.0000 9680.233
## 2048 3750.0000 9680.233
## 2049 3750.0000 9680.233
## 2050 3750.0000 9680.233
## 2051 3750.0000 9680.233
## 2052 3750.0000 9680.233
## 2053 3750.0000 9680.233
## 2054 3750.0000 9680.233
## 2055 3750.0000 9680.233
## 2056 3750.0000 9680.233
## 2057 3750.0000 9680.233
## 2058 3750.0000 9680.233
## 2059 3750.0000 9680.233
## 2060 3750.0000 9680.233
## 2061 3750.0000 9680.233
## 2062 3750.0000 9680.233
## 2063 3750.0000 9680.233
## 2064 3750.0000 9680.233
## 2065 2768.8953 15496.221
## 2066 2768.8953 15496.221
## 2067 2768.8953 15496.221
## 2068 2768.8953 15496.221
## 2069 2768.8953 15496.221
## 2070 2768.8953 15496.221
## 2071 2768.8953 15496.221
## 2072 2768.8953 15496.221
## 2073 2768.8953 15496.221
## 2074 2768.8953 15496.221
## 2075 2768.8953 15496.221
## 2076 2768.8953 15496.221
## 2077 2768.8953 15496.221
## 2078 2768.8953 15496.221
## 2079 2768.8953 15496.221
## 2080 2768.8953 15496.221
## 2081 2768.8953 15496.221
## 2082 2768.8953 15496.221
## 2083 2768.8953 15496.221
## 2084 2768.8953 15496.221
## 2085 2768.8953 15496.221
## 2086 2768.8953 15496.221
## 2087 2768.8953 15496.221
## 2088 2768.8953 15496.221
## 2089 1748.5465 15620.930
## 2090 1748.5465 15620.930
## 2091 1748.5465 15620.930
## 2092 1748.5465 15620.930
## 2093 1748.5465 15620.930
## 2094 1748.5465 15620.930
## 2095 1748.5465 15620.930
## 2096 1748.5465 15620.930
## 2097 1748.5465 15620.930
## 2098 1748.5465 15620.930
## 2099 1748.5465 15620.930
## 2100 1748.5465 15620.930
## 2101 1748.5465 15620.930
## 2102 1748.5465 15620.930
## 2103 1748.5465 15620.930
## 2104 1748.5465 15620.930
## 2105 1748.5465 15620.930
## 2106 1748.5465 15620.930
## 2107 1748.5465 15620.930
## 2108 1748.5465 15620.930
## 2109 1748.5465 15620.930
## 2110 1748.5465 15620.930
## 2111 1748.5465 15620.930
## 2112 1748.5465 15620.930
## 2113 217.1512 1794.767
## 2114 217.1512 1794.767
## 2115 217.1512 1794.767
## 2116 217.1512 1794.767
## 2117 217.1512 1794.767
## 2118 217.1512 1794.767
## 2119 217.1512 1794.767
## 2120 217.1512 1794.767
## 2121 217.1512 1794.767
## 2122 217.1512 1794.767
## 2123 217.1512 1794.767
## 2124 217.1512 1794.767
## 2125 217.1512 1794.767
## 2126 217.1512 1794.767
## 2127 217.1512 1794.767
## 2128 217.1512 1794.767
## 2129 217.1512 1794.767
## 2130 217.1512 1794.767
## 2131 217.1512 1794.767
## 2132 217.1512 1794.767
## 2133 217.1512 1794.767
## 2134 217.1512 1794.767
## 2135 217.1512 1794.767
## 2136 217.1512 1794.767
## 2137 5973.8372 9212.791
## 2138 5973.8372 9212.791
## 2139 5973.8372 9212.791
## 2140 5973.8372 9212.791
## 2141 5973.8372 9212.791
## 2142 5973.8372 9212.791
## 2143 5973.8372 9212.791
## 2144 5973.8372 9212.791
## 2145 5973.8372 9212.791
## 2146 5973.8372 9212.791
## 2147 5973.8372 9212.791
## 2148 5973.8372 9212.791
## 2149 5973.8372 9212.791
## 2150 5973.8372 9212.791
## 2151 5973.8372 9212.791
## 2152 5973.8372 9212.791
## 2153 5973.8372 9212.791
## 2154 5973.8372 9212.791
## 2155 5973.8372 9212.791
## 2156 5973.8372 9212.791
## 2157 5973.8372 9212.791
## 2158 5973.8372 9212.791
## 2159 5973.8372 9212.791
## 2160 5973.8372 9212.791
## 2161 3008.7209 12723.837
## 2162 3008.7209 12723.837
## 2163 3008.7209 12723.837
## 2164 3008.7209 12723.837
## 2165 3008.7209 12723.837
## 2166 3008.7209 12723.837
## 2167 3008.7209 12723.837
## 2168 3008.7209 12723.837
## 2169 3008.7209 12723.837
## 2170 3008.7209 12723.837
## 2171 3008.7209 12723.837
## 2172 3008.7209 12723.837
## 2173 3008.7209 12723.837
## 2174 3008.7209 12723.837
## 2175 3008.7209 12723.837
## 2176 3008.7209 12723.837
## 2177 3008.7209 12723.837
## 2178 3008.7209 12723.837
## 2179 3008.7209 12723.837
## 2180 3008.7209 12723.837
## 2181 3008.7209 12723.837
## 2182 3008.7209 12723.837
## 2183 3008.7209 12723.837
## 2184 3008.7209 12723.837
## 2185 4967.4419 16817.442
## 2186 4967.4419 16817.442
## 2187 4967.4419 16817.442
## 2188 4967.4419 16817.442
## 2189 4967.4419 16817.442
## 2190 4967.4419 16817.442
## 2191 4967.4419 16817.442
## 2192 4967.4419 16817.442
## 2193 4967.4419 16817.442
## 2194 4967.4419 16817.442
## 2195 4967.4419 16817.442
## 2196 4967.4419 16817.442
## 2197 4967.4419 16817.442
## 2198 4967.4419 16817.442
## 2199 4967.4419 16817.442
## 2200 4967.4419 16817.442
## 2201 4967.4419 16817.442
## 2202 4967.4419 16817.442
## 2203 4967.4419 16817.442
## 2204 4967.4419 16817.442
## 2205 4967.4419 16817.442
## 2206 4967.4419 16817.442
## 2207 4967.4419 16817.442
## 2208 4967.4419 16817.442
## 2209 3008.7209 13630.814
## 2210 3008.7209 13630.814
## 2211 3008.7209 13630.814
## 2212 3008.7209 13630.814
## 2213 3008.7209 13630.814
## 2214 3008.7209 13630.814
## 2215 3008.7209 13630.814
## 2216 3008.7209 13630.814
## 2217 3008.7209 13630.814
## 2218 3008.7209 13630.814
## 2219 3008.7209 13630.814
## 2220 3008.7209 13630.814
## 2221 3008.7209 13630.814
## 2222 3008.7209 13630.814
## 2223 3008.7209 13630.814
## 2224 3008.7209 13630.814
## 2225 3008.7209 13630.814
## 2226 3008.7209 13630.814
## 2227 3008.7209 13630.814
## 2228 3008.7209 13630.814
## 2229 3008.7209 13630.814
## 2230 3008.7209 13630.814
## 2231 3008.7209 13630.814
## 2232 3008.7209 13630.814
## 2233 2659.8837 8110.465
## 2234 2659.8837 8110.465
## 2235 2659.8837 8110.465
## 2236 2659.8837 8110.465
## 2237 2659.8837 8110.465
## 2238 2659.8837 8110.465
## 2239 2659.8837 8110.465
## 2240 2659.8837 8110.465
## 2241 2659.8837 8110.465
## 2242 2659.8837 8110.465
## 2243 2659.8837 8110.465
## 2244 2659.8837 8110.465
## 2245 2659.8837 8110.465
## 2246 2659.8837 8110.465
## 2247 2659.8837 8110.465
## 2248 2659.8837 8110.465
## 2249 2659.8837 8110.465
## 2250 2659.8837 8110.465
## 2251 2659.8837 8110.465
## 2252 2659.8837 8110.465
## 2253 2659.8837 8110.465
## 2254 2659.8837 8110.465
## 2255 2659.8837 8110.465
## 2256 2659.8837 8110.465
## 2257 4765.9884 12243.314
## 2258 4765.9884 12243.314
## 2259 4765.9884 12243.314
## 2260 4765.9884 12243.314
## 2261 4765.9884 12243.314
## 2262 4765.9884 12243.314
## 2263 4765.9884 12243.314
## 2264 4765.9884 12243.314
## 2265 4765.9884 12243.314
## 2266 4765.9884 12243.314
## 2267 4765.9884 12243.314
## 2268 4765.9884 12243.314
## 2269 4765.9884 12243.314
## 2270 4765.9884 12243.314
## 2271 4765.9884 12243.314
## 2272 4765.9884 12243.314
## 2273 4765.9884 12243.314
## 2274 4765.9884 12243.314
## 2275 4765.9884 12243.314
## 2276 4765.9884 12243.314
## 2277 4765.9884 12243.314
## 2278 4765.9884 12243.314
## 2279 4765.9884 12243.314
## 2280 4765.9884 12243.314
## 2281 2376.4535 10636.919
## 2282 2376.4535 10636.919
## 2283 2376.4535 10636.919
## 2284 2376.4535 10636.919
## 2285 2376.4535 10636.919
## 2286 2376.4535 10636.919
## 2287 2376.4535 10636.919
## 2288 2376.4535 10636.919
## 2289 2376.4535 10636.919
## 2290 2376.4535 10636.919
## 2291 2376.4535 10636.919
## 2292 2376.4535 10636.919
## 2293 2376.4535 10636.919
## 2294 2376.4535 10636.919
## 2295 2376.4535 10636.919
## 2296 2376.4535 10636.919
## 2297 2376.4535 10636.919
## 2298 2376.4535 10636.919
## 2299 2376.4535 10636.919
## 2300 2376.4535 10636.919
## 2301 2376.4535 10636.919
## 2302 2376.4535 10636.919
## 2303 2376.4535 10636.919
## 2304 2376.4535 10636.919
## 2305 217.1512 1794.767
## 2306 217.1512 1794.767
## 2307 217.1512 1794.767
## 2308 217.1512 1794.767
## 2309 217.1512 1794.767
## 2310 217.1512 1794.767
## 2311 217.1512 1794.767
## 2312 217.1512 1794.767
## 2313 217.1512 1794.767
## 2314 217.1512 1794.767
## 2315 217.1512 1794.767
## 2316 217.1512 1794.767
## 2317 217.1512 1794.767
## 2318 217.1512 1794.767
## 2319 217.1512 1794.767
## 2320 217.1512 1794.767
## 2321 217.1512 1794.767
## 2322 217.1512 1794.767
## 2323 217.1512 1794.767
## 2324 217.1512 1794.767
## 2325 217.1512 1794.767
## 2326 217.1512 1794.767
## 2327 217.1512 1794.767
## 2328 217.1512 1794.767
## 2329 3924.4186 7861.047
## 2330 3924.4186 7861.047
## 2331 3924.4186 7861.047
## 2332 3924.4186 7861.047
## 2333 3924.4186 7861.047
## 2334 3924.4186 7861.047
## 2335 3924.4186 7861.047
## 2336 3924.4186 7861.047
## 2337 3924.4186 7861.047
## 2338 3924.4186 7861.047
## 2339 3924.4186 7861.047
## 2340 3924.4186 7861.047
## 2341 3924.4186 7861.047
## 2342 3924.4186 7861.047
## 2343 3924.4186 7861.047
## 2344 3924.4186 7861.047
## 2345 3924.4186 7861.047
## 2346 3924.4186 7861.047
## 2347 3924.4186 7861.047
## 2348 3924.4186 7861.047
## 2349 3924.4186 7861.047
## 2350 3924.4186 7861.047
## 2351 3924.4186 7861.047
## 2352 3924.4186 7861.047
## 2353 3819.7674 12837.209
## 2354 3819.7674 12837.209
## 2355 3819.7674 12837.209
## 2356 3819.7674 12837.209
## 2357 3819.7674 12837.209
## 2358 3819.7674 12837.209
## 2359 3819.7674 12837.209
## 2360 3819.7674 12837.209
## 2361 3819.7674 12837.209
## 2362 3819.7674 12837.209
## 2363 3819.7674 12837.209
## 2364 3819.7674 12837.209
## 2365 3819.7674 12837.209
## 2366 3819.7674 12837.209
## 2367 3819.7674 12837.209
## 2368 3819.7674 12837.209
## 2369 3819.7674 12837.209
## 2370 3819.7674 12837.209
## 2371 3819.7674 12837.209
## 2372 3819.7674 12837.209
## 2373 3819.7674 12837.209
## 2374 3819.7674 12837.209
## 2375 3819.7674 12837.209
## 2376 3819.7674 12837.209
## 2377 4705.8140 8715.698
## 2378 4705.8140 8715.698
## 2379 4705.8140 8715.698
## 2380 4705.8140 8715.698
## 2381 4705.8140 8715.698
## 2382 4705.8140 8715.698
## 2383 4705.8140 8715.698
## 2384 4705.8140 8715.698
## 2385 4705.8140 8715.698
## 2386 4705.8140 8715.698
## 2387 4705.8140 8715.698
## 2388 4705.8140 8715.698
## 2389 4705.8140 8715.698
## 2390 4705.8140 8715.698
## 2391 4705.8140 8715.698
## 2392 4705.8140 8715.698
## 2393 4705.8140 8715.698
## 2394 4705.8140 8715.698
## 2395 4705.8140 8715.698
## 2396 4705.8140 8715.698
## 2397 4705.8140 8715.698
## 2398 4705.8140 8715.698
## 2399 4705.8140 8715.698
## 2400 4705.8140 8715.698
## 2401 5345.9302 11354.651
## 2402 5345.9302 11354.651
## 2403 5345.9302 11354.651
## 2404 5345.9302 11354.651
## 2405 5345.9302 11354.651
## 2406 5345.9302 11354.651
## 2407 5345.9302 11354.651
## 2408 5345.9302 11354.651
## 2409 5345.9302 11354.651
## 2410 5345.9302 11354.651
## 2411 5345.9302 11354.651
## 2412 5345.9302 11354.651
## 2413 5345.9302 11354.651
## 2414 5345.9302 11354.651
## 2415 5345.9302 11354.651
## 2416 5345.9302 11354.651
## 2417 5345.9302 11354.651
## 2418 5345.9302 11354.651
## 2419 5345.9302 11354.651
## 2420 5345.9302 11354.651
## 2421 5345.9302 11354.651
## 2422 5345.9302 11354.651
## 2423 5345.9302 11354.651
## 2424 5345.9302 11354.651
## 2425 7709.3023 3584.302
## 2426 7709.3023 3584.302
## 2427 7709.3023 3584.302
## 2428 7709.3023 3584.302
## 2429 7709.3023 3584.302
## 2430 7709.3023 3584.302
## 2431 7709.3023 3584.302
## 2432 7709.3023 3584.302
## 2433 7709.3023 3584.302
## 2434 7709.3023 3584.302
## 2435 7709.3023 3584.302
## 2436 7709.3023 3584.302
## 2437 7709.3023 3584.302
## 2438 7709.3023 3584.302
## 2439 7709.3023 3584.302
## 2440 7709.3023 3584.302
## 2441 7709.3023 3584.302
## 2442 7709.3023 3584.302
## 2443 7709.3023 3584.302
## 2444 7709.3023 3584.302
## 2445 7709.3023 3584.302
## 2446 7709.3023 3584.302
## 2447 7709.3023 3584.302
## 2448 7709.3023 3584.302
## 2449 3553.7791 13638.663
## 2450 3553.7791 13638.663
## 2451 3553.7791 13638.663
## 2452 3553.7791 13638.663
## 2453 3553.7791 13638.663
## 2454 3553.7791 13638.663
## 2455 3553.7791 13638.663
## 2456 3553.7791 13638.663
## 2457 3553.7791 13638.663
## 2458 3553.7791 13638.663
## 2459 3553.7791 13638.663
## 2460 3553.7791 13638.663
## 2461 3553.7791 13638.663
## 2462 3553.7791 13638.663
## 2463 3553.7791 13638.663
## 2464 3553.7791 13638.663
## 2465 3553.7791 13638.663
## 2466 3553.7791 13638.663
## 2467 3553.7791 13638.663
## 2468 3553.7791 13638.663
## 2469 3553.7791 13638.663
## 2470 3553.7791 13638.663
## 2471 3553.7791 13638.663
## 2472 3553.7791 13638.663
## 2473 2180.2326 20155.814
## 2474 2180.2326 20155.814
## 2475 2180.2326 20155.814
## 2476 2180.2326 20155.814
## 2477 2180.2326 20155.814
## 2478 2180.2326 20155.814
## 2479 2180.2326 20155.814
## 2480 2180.2326 20155.814
## 2481 2180.2326 20155.814
## 2482 2180.2326 20155.814
## 2483 2180.2326 20155.814
## 2484 2180.2326 20155.814
## 2485 2180.2326 20155.814
## 2486 2180.2326 20155.814
## 2487 2180.2326 20155.814
## 2488 2180.2326 20155.814
## 2489 2180.2326 20155.814
## 2490 2180.2326 20155.814
## 2491 2180.2326 20155.814
## 2492 2180.2326 20155.814
## 2493 2180.2326 20155.814
## 2494 2180.2326 20155.814
## 2495 2180.2326 20155.814
## 2496 2180.2326 20155.814
## 2497 217.1512 1794.767
## 2498 217.1512 1794.767
## 2499 217.1512 1794.767
## 2500 217.1512 1794.767
## 2501 217.1512 1794.767
## 2502 217.1512 1794.767
## 2503 217.1512 1794.767
## 2504 217.1512 1794.767
## 2505 217.1512 1794.767
## 2506 217.1512 1794.767
## 2507 217.1512 1794.767
## 2508 217.1512 1794.767
## 2509 217.1512 1794.767
## 2510 217.1512 1794.767
## 2511 217.1512 1794.767
## 2512 217.1512 1794.767
## 2513 217.1512 1794.767
## 2514 217.1512 1794.767
## 2515 217.1512 1794.767
## 2516 217.1512 1794.767
## 2517 217.1512 1794.767
## 2518 217.1512 1794.767
## 2519 217.1512 1794.767
## 2520 217.1512 1794.767
## 2521 1744.1860 9744.767
## 2522 1744.1860 9744.767
## 2523 1744.1860 9744.767
## 2524 1744.1860 9744.767
## 2525 1744.1860 9744.767
## 2526 1744.1860 9744.767
## 2527 1744.1860 9744.767
## 2528 1744.1860 9744.767
## 2529 1744.1860 9744.767
## 2530 1744.1860 9744.767
## 2531 1744.1860 9744.767
## 2532 1744.1860 9744.767
## 2533 1744.1860 9744.767
## 2534 1744.1860 9744.767
## 2535 1744.1860 9744.767
## 2536 1744.1860 9744.767
## 2537 1744.1860 9744.767
## 2538 1744.1860 9744.767
## 2539 1744.1860 9744.767
## 2540 1744.1860 9744.767
## 2541 1744.1860 9744.767
## 2542 1744.1860 9744.767
## 2543 1744.1860 9744.767
## 2544 1744.1860 9744.767
## 2545 1412.7907 17223.837
## 2546 1412.7907 17223.837
## 2547 1412.7907 17223.837
## 2548 1412.7907 17223.837
## 2549 1412.7907 17223.837
## 2550 1412.7907 17223.837
## 2551 1412.7907 17223.837
## 2552 1412.7907 17223.837
## 2553 1412.7907 17223.837
## 2554 1412.7907 17223.837
## 2555 1412.7907 17223.837
## 2556 1412.7907 17223.837
## 2557 1412.7907 17223.837
## 2558 1412.7907 17223.837
## 2559 1412.7907 17223.837
## 2560 1412.7907 17223.837
## 2561 1412.7907 17223.837
## 2562 1412.7907 17223.837
## 2563 1412.7907 17223.837
## 2564 1412.7907 17223.837
## 2565 1412.7907 17223.837
## 2566 1412.7907 17223.837
## 2567 1412.7907 17223.837
## 2568 1412.7907 17223.837
## 2569 2612.7907 12169.186
## 2570 2612.7907 12169.186
## 2571 2612.7907 12169.186
## 2572 2612.7907 12169.186
## 2573 2612.7907 12169.186
## 2574 2612.7907 12169.186
## 2575 2612.7907 12169.186
## 2576 2612.7907 12169.186
## 2577 2612.7907 12169.186
## 2578 2612.7907 12169.186
## 2579 2612.7907 12169.186
## 2580 2612.7907 12169.186
## 2581 2612.7907 12169.186
## 2582 2612.7907 12169.186
## 2583 2612.7907 12169.186
## 2584 2612.7907 12169.186
## 2585 2612.7907 12169.186
## 2586 2612.7907 12169.186
## 2587 2612.7907 12169.186
## 2588 2612.7907 12169.186
## 2589 2612.7907 12169.186
## 2590 2612.7907 12169.186
## 2591 2612.7907 12169.186
## 2592 2612.7907 12169.186
## 2593 3680.2326 11284.884
## 2594 3680.2326 11284.884
## 2595 3680.2326 11284.884
## 2596 3680.2326 11284.884
## 2597 3680.2326 11284.884
## 2598 3680.2326 11284.884
## 2599 3680.2326 11284.884
## 2600 3680.2326 11284.884
## 2601 3680.2326 11284.884
## 2602 3680.2326 11284.884
## 2603 3680.2326 11284.884
## 2604 3680.2326 11284.884
## 2605 3680.2326 11284.884
## 2606 3680.2326 11284.884
## 2607 3680.2326 11284.884
## 2608 3680.2326 11284.884
## 2609 3680.2326 11284.884
## 2610 3680.2326 11284.884
## 2611 3680.2326 11284.884
## 2612 3680.2326 11284.884
## 2613 3680.2326 11284.884
## 2614 3680.2326 11284.884
## 2615 3680.2326 11284.884
## 2616 3680.2326 11284.884
## 2617 4360.4651 5206.395
## 2618 4360.4651 5206.395
## 2619 4360.4651 5206.395
## 2620 4360.4651 5206.395
## 2621 4360.4651 5206.395
## 2622 4360.4651 5206.395
## 2623 4360.4651 5206.395
## 2624 4360.4651 5206.395
## 2625 4360.4651 5206.395
## 2626 4360.4651 5206.395
## 2627 4360.4651 5206.395
## 2628 4360.4651 5206.395
## 2629 4360.4651 5206.395
## 2630 4360.4651 5206.395
## 2631 4360.4651 5206.395
## 2632 4360.4651 5206.395
## 2633 4360.4651 5206.395
## 2634 4360.4651 5206.395
## 2635 4360.4651 5206.395
## 2636 4360.4651 5206.395
## 2637 4360.4651 5206.395
## 2638 4360.4651 5206.395
## 2639 4360.4651 5206.395
## 2640 4360.4651 5206.395
## 2641 1090.1163 4141.570
## 2642 1090.1163 4141.570
## 2643 1090.1163 4141.570
## 2644 1090.1163 4141.570
## 2645 1090.1163 4141.570
## 2646 1090.1163 4141.570
## 2647 1090.1163 4141.570
## 2648 1090.1163 4141.570
## 2649 1090.1163 4141.570
## 2650 1090.1163 4141.570
## 2651 1090.1163 4141.570
## 2652 1090.1163 4141.570
## 2653 1090.1163 4141.570
## 2654 1090.1163 4141.570
## 2655 1090.1163 4141.570
## 2656 1090.1163 4141.570
## 2657 1090.1163 4141.570
## 2658 1090.1163 4141.570
## 2659 1090.1163 4141.570
## 2660 1090.1163 4141.570
## 2661 1090.1163 4141.570
## 2662 1090.1163 4141.570
## 2663 1090.1163 4141.570
## 2664 1090.1163 4141.570
## 2665 2180.2326 2308.430
## 2666 2180.2326 2308.430
## 2667 2180.2326 2308.430
## 2668 2180.2326 2308.430
## 2669 2180.2326 2308.430
## 2670 2180.2326 2308.430
## 2671 2180.2326 2308.430
## 2672 2180.2326 2308.430
## 2673 2180.2326 2308.430
## 2674 2180.2326 2308.430
## 2675 2180.2326 2308.430
## 2676 2180.2326 2308.430
## 2677 2180.2326 2308.430
## 2678 2180.2326 2308.430
## 2679 2180.2326 2308.430
## 2680 2180.2326 2308.430
## 2681 2180.2326 2308.430
## 2682 2180.2326 2308.430
## 2683 2180.2326 2308.430
## 2684 2180.2326 2308.430
## 2685 2180.2326 2308.430
## 2686 2180.2326 2308.430
## 2687 2180.2326 2308.430
## 2688 2180.2326 2308.430
## 2689 217.1512 1794.767
## 2690 217.1512 1794.767
## 2691 217.1512 1794.767
## 2692 217.1512 1794.767
## 2693 217.1512 1794.767
## 2694 217.1512 1794.767
## 2695 217.1512 1794.767
## 2696 217.1512 1794.767
## 2697 217.1512 1794.767
## 2698 217.1512 1794.767
## 2699 217.1512 1794.767
## 2700 217.1512 1794.767
## 2701 217.1512 1794.767
## 2702 217.1512 1794.767
## 2703 217.1512 1794.767
## 2704 217.1512 1794.767
## 2705 217.1512 1794.767
## 2706 217.1512 1794.767
## 2707 217.1512 1794.767
## 2708 217.1512 1794.767
## 2709 217.1512 1794.767
## 2710 217.1512 1794.767
## 2711 217.1512 1794.767
## 2712 217.1512 1794.767
## 2713 1744.1860 8070.349
## 2714 1744.1860 8070.349
## 2715 1744.1860 8070.349
## 2716 1744.1860 8070.349
## 2717 1744.1860 8070.349
## 2718 1744.1860 8070.349
## 2719 1744.1860 8070.349
## 2720 1744.1860 8070.349
## 2721 1744.1860 8070.349
## 2722 1744.1860 8070.349
## 2723 1744.1860 8070.349
## 2724 1744.1860 8070.349
## 2725 1744.1860 8070.349
## 2726 1744.1860 8070.349
## 2727 1744.1860 8070.349
## 2728 1744.1860 8070.349
## 2729 1744.1860 8070.349
## 2730 1744.1860 8070.349
## 2731 1744.1860 8070.349
## 2732 1744.1860 8070.349
## 2733 1744.1860 8070.349
## 2734 1744.1860 8070.349
## 2735 1744.1860 8070.349
## 2736 1744.1860 8070.349
## 2737 2502.9070 10360.465
## 2738 2502.9070 10360.465
## 2739 2502.9070 10360.465
## 2740 2502.9070 10360.465
## 2741 2502.9070 10360.465
## 2742 2502.9070 10360.465
## 2743 2502.9070 10360.465
## 2744 2502.9070 10360.465
## 2745 2502.9070 10360.465
## 2746 2502.9070 10360.465
## 2747 2502.9070 10360.465
## 2748 2502.9070 10360.465
## 2749 2502.9070 10360.465
## 2750 2502.9070 10360.465
## 2751 2502.9070 10360.465
## 2752 2502.9070 10360.465
## 2753 2502.9070 10360.465
## 2754 2502.9070 10360.465
## 2755 2502.9070 10360.465
## 2756 2502.9070 10360.465
## 2757 2502.9070 10360.465
## 2758 2502.9070 10360.465
## 2759 2502.9070 10360.465
## 2760 2502.9070 10360.465
## 2761 2612.7907 10625.581
## 2762 2612.7907 10625.581
## 2763 2612.7907 10625.581
## 2764 2612.7907 10625.581
## 2765 2612.7907 10625.581
## 2766 2612.7907 10625.581
## 2767 2612.7907 10625.581
## 2768 2612.7907 10625.581
## 2769 2612.7907 10625.581
## 2770 2612.7907 10625.581
## 2771 2612.7907 10625.581
## 2772 2612.7907 10625.581
## 2773 2612.7907 10625.581
## 2774 2612.7907 10625.581
## 2775 2612.7907 10625.581
## 2776 2612.7907 10625.581
## 2777 2612.7907 10625.581
## 2778 2612.7907 10625.581
## 2779 2612.7907 10625.581
## 2780 2612.7907 10625.581
## 2781 2612.7907 10625.581
## 2782 2612.7907 10625.581
## 2783 2612.7907 10625.581
## 2784 2612.7907 10625.581
## 2785 1090.1163 13665.698
## 2786 1090.1163 13665.698
## 2787 1090.1163 13665.698
## 2788 1090.1163 13665.698
## 2789 1090.1163 13665.698
## 2790 1090.1163 13665.698
## 2791 1090.1163 13665.698
## 2792 1090.1163 13665.698
## 2793 1090.1163 13665.698
## 2794 1090.1163 13665.698
## 2795 1090.1163 13665.698
## 2796 1090.1163 13665.698
## 2797 1090.1163 13665.698
## 2798 1090.1163 13665.698
## 2799 1090.1163 13665.698
## 2800 1090.1163 13665.698
## 2801 1090.1163 13665.698
## 2802 1090.1163 13665.698
## 2803 1090.1163 13665.698
## 2804 1090.1163 13665.698
## 2805 1090.1163 13665.698
## 2806 1090.1163 13665.698
## 2807 1090.1163 13665.698
## 2808 1090.1163 13665.698
## 2809 2162.7907 8311.047
## 2810 2162.7907 8311.047
## 2811 2162.7907 8311.047
## 2812 2162.7907 8311.047
## 2813 2162.7907 8311.047
## 2814 2162.7907 8311.047
## 2815 2162.7907 8311.047
## 2816 2162.7907 8311.047
## 2817 2162.7907 8311.047
## 2818 2162.7907 8311.047
## 2819 2162.7907 8311.047
## 2820 2162.7907 8311.047
## 2821 2162.7907 8311.047
## 2822 2162.7907 8311.047
## 2823 2162.7907 8311.047
## 2824 2162.7907 8311.047
## 2825 2162.7907 8311.047
## 2826 2162.7907 8311.047
## 2827 2162.7907 8311.047
## 2828 2162.7907 8311.047
## 2829 2162.7907 8311.047
## 2830 2162.7907 8311.047
## 2831 2162.7907 8311.047
## 2832 2162.7907 8311.047
## 2833 4329.9419 9552.907
## 2834 4329.9419 9552.907
## 2835 4329.9419 9552.907
## 2836 4329.9419 9552.907
## 2837 4329.9419 9552.907
## 2838 4329.9419 9552.907
## 2839 4329.9419 9552.907
## 2840 4329.9419 9552.907
## 2841 4329.9419 9552.907
## 2842 4329.9419 9552.907
## 2843 4329.9419 9552.907
## 2844 4329.9419 9552.907
## 2845 4329.9419 9552.907
## 2846 4329.9419 9552.907
## 2847 4329.9419 9552.907
## 2848 4329.9419 9552.907
## 2849 4329.9419 9552.907
## 2850 4329.9419 9552.907
## 2851 4329.9419 9552.907
## 2852 4329.9419 9552.907
## 2853 4329.9419 9552.907
## 2854 4329.9419 9552.907
## 2855 4329.9419 9552.907
## 2856 4329.9419 9552.907
## 2857 3920.0581 16266.279
## 2858 3920.0581 16266.279
## 2859 3920.0581 16266.279
## 2860 3920.0581 16266.279
## 2861 3920.0581 16266.279
## 2862 3920.0581 16266.279
## 2863 3920.0581 16266.279
## 2864 3920.0581 16266.279
## 2865 3920.0581 16266.279
## 2866 3920.0581 16266.279
## 2867 3920.0581 16266.279
## 2868 3920.0581 16266.279
## 2869 3920.0581 16266.279
## 2870 3920.0581 16266.279
## 2871 3920.0581 16266.279
## 2872 3920.0581 16266.279
## 2873 3920.0581 16266.279
## 2874 3920.0581 16266.279
## 2875 3920.0581 16266.279
## 2876 3920.0581 16266.279
## 2877 3920.0581 16266.279
## 2878 3920.0581 16266.279
## 2879 3920.0581 16266.279
## 2880 3920.0581 16266.279
## 2881 217.1512 1794.767
## 2882 217.1512 1794.767
## 2883 217.1512 1794.767
## 2884 217.1512 1794.767
## 2885 217.1512 1794.767
## 2886 217.1512 1794.767
## 2887 217.1512 1794.767
## 2888 217.1512 1794.767
## 2889 217.1512 1794.767
## 2890 217.1512 1794.767
## 2891 217.1512 1794.767
## 2892 217.1512 1794.767
## 2893 217.1512 1794.767
## 2894 217.1512 1794.767
## 2895 217.1512 1794.767
## 2896 217.1512 1794.767
## 2897 217.1512 1794.767
## 2898 217.1512 1794.767
## 2899 217.1512 1794.767
## 2900 217.1512 1794.767
## 2901 217.1512 1794.767
## 2902 217.1512 1794.767
## 2903 217.1512 1794.767
## 2904 217.1512 1794.767
## 2905 819.7674 7111.047
## 2906 819.7674 7111.047
## 2907 819.7674 7111.047
## 2908 819.7674 7111.047
## 2909 819.7674 7111.047
## 2910 819.7674 7111.047
## 2911 819.7674 7111.047
## 2912 819.7674 7111.047
## 2913 819.7674 7111.047
## 2914 819.7674 7111.047
## 2915 819.7674 7111.047
## 2916 819.7674 7111.047
## 2917 819.7674 7111.047
## 2918 819.7674 7111.047
## 2919 819.7674 7111.047
## 2920 819.7674 7111.047
## 2921 819.7674 7111.047
## 2922 819.7674 7111.047
## 2923 819.7674 7111.047
## 2924 819.7674 7111.047
## 2925 819.7674 7111.047
## 2926 819.7674 7111.047
## 2927 819.7674 7111.047
## 2928 819.7674 7111.047
## 2929 2373.8372 11391.279
## 2930 2373.8372 11391.279
## 2931 2373.8372 11391.279
## 2932 2373.8372 11391.279
## 2933 2373.8372 11391.279
## 2934 2373.8372 11391.279
## 2935 2373.8372 11391.279
## 2936 2373.8372 11391.279
## 2937 2373.8372 11391.279
## 2938 2373.8372 11391.279
## 2939 2373.8372 11391.279
## 2940 2373.8372 11391.279
## 2941 2373.8372 11391.279
## 2942 2373.8372 11391.279
## 2943 2373.8372 11391.279
## 2944 2373.8372 11391.279
## 2945 2373.8372 11391.279
## 2946 2373.8372 11391.279
## 2947 2373.8372 11391.279
## 2948 2373.8372 11391.279
## 2949 2373.8372 11391.279
## 2950 2373.8372 11391.279
## 2951 2373.8372 11391.279
## 2952 2373.8372 11391.279
## 2953 2956.3953 7470.349
## 2954 2956.3953 7470.349
## 2955 2956.3953 7470.349
## 2956 2956.3953 7470.349
## 2957 2956.3953 7470.349
## 2958 2956.3953 7470.349
## 2959 2956.3953 7470.349
## 2960 2956.3953 7470.349
## 2961 2956.3953 7470.349
## 2962 2956.3953 7470.349
## 2963 2956.3953 7470.349
## 2964 2956.3953 7470.349
## 2965 2956.3953 7470.349
## 2966 2956.3953 7470.349
## 2967 2956.3953 7470.349
## 2968 2956.3953 7470.349
## 2969 2956.3953 7470.349
## 2970 2956.3953 7470.349
## 2971 2956.3953 7470.349
## 2972 2956.3953 7470.349
## 2973 2956.3953 7470.349
## 2974 2956.3953 7470.349
## 2975 2956.3953 7470.349
## 2976 2956.3953 7470.349
## 2977 3802.3256 9181.395
## 2978 3802.3256 9181.395
## 2979 3802.3256 9181.395
## 2980 3802.3256 9181.395
## 2981 3802.3256 9181.395
## 2982 3802.3256 9181.395
## 2983 3802.3256 9181.395
## 2984 3802.3256 9181.395
## 2985 3802.3256 9181.395
## 2986 3802.3256 9181.395
## 2987 3802.3256 9181.395
## 2988 3802.3256 9181.395
## 2989 3802.3256 9181.395
## 2990 3802.3256 9181.395
## 2991 3802.3256 9181.395
## 2992 3802.3256 9181.395
## 2993 3802.3256 9181.395
## 2994 3802.3256 9181.395
## 2995 3802.3256 9181.395
## 2996 3802.3256 9181.395
## 2997 3802.3256 9181.395
## 2998 3802.3256 9181.395
## 2999 3802.3256 9181.395
## 3000 3802.3256 9181.395
## 3001 3750.0000 9556.395
## 3002 3750.0000 9556.395
## 3003 3750.0000 9556.395
## 3004 3750.0000 9556.395
## 3005 3750.0000 9556.395
## 3006 3750.0000 9556.395
## 3007 3750.0000 9556.395
## 3008 3750.0000 9556.395
## 3009 3750.0000 9556.395
## 3010 3750.0000 9556.395
## 3011 3750.0000 9556.395
## 3012 3750.0000 9556.395
## 3013 3750.0000 9556.395
## 3014 3750.0000 9556.395
## 3015 3750.0000 9556.395
## 3016 3750.0000 9556.395
## 3017 3750.0000 9556.395
## 3018 3750.0000 9556.395
## 3019 3750.0000 9556.395
## 3020 3750.0000 9556.395
## 3021 3750.0000 9556.395
## 3022 3750.0000 9556.395
## 3023 3750.0000 9556.395
## 3024 3750.0000 9556.395
## 3025 2768.8953 15595.640
## 3026 2768.8953 15595.640
## 3027 2768.8953 15595.640
## 3028 2768.8953 15595.640
## 3029 2768.8953 15595.640
## 3030 2768.8953 15595.640
## 3031 2768.8953 15595.640
## 3032 2768.8953 15595.640
## 3033 2768.8953 15595.640
## 3034 2768.8953 15595.640
## 3035 2768.8953 15595.640
## 3036 2768.8953 15595.640
## 3037 2768.8953 15595.640
## 3038 2768.8953 15595.640
## 3039 2768.8953 15595.640
## 3040 2768.8953 15595.640
## 3041 2768.8953 15595.640
## 3042 2768.8953 15595.640
## 3043 2768.8953 15595.640
## 3044 2768.8953 15595.640
## 3045 2768.8953 15595.640
## 3046 2768.8953 15595.640
## 3047 2768.8953 15595.640
## 3048 2768.8953 15595.640
## 3049 1785.1744 15213.663
## 3050 1785.1744 15213.663
## 3051 1785.1744 15213.663
## 3052 1785.1744 15213.663
## 3053 1785.1744 15213.663
## 3054 1785.1744 15213.663
## 3055 1785.1744 15213.663
## 3056 1785.1744 15213.663
## 3057 1785.1744 15213.663
## 3058 1785.1744 15213.663
## 3059 1785.1744 15213.663
## 3060 1785.1744 15213.663
## 3061 1785.1744 15213.663
## 3062 1785.1744 15213.663
## 3063 1785.1744 15213.663
## 3064 1785.1744 15213.663
## 3065 1785.1744 15213.663
## 3066 1785.1744 15213.663
## 3067 1785.1744 15213.663
## 3068 1785.1744 15213.663
## 3069 1785.1744 15213.663
## 3070 1785.1744 15213.663
## 3071 1785.1744 15213.663
## 3072 1785.1744 15213.663
## 3073 217.1512 1794.767
## 3074 217.1512 1794.767
## 3075 217.1512 1794.767
## 3076 217.1512 1794.767
## 3077 217.1512 1794.767
## 3078 217.1512 1794.767
## 3079 217.1512 1794.767
## 3080 217.1512 1794.767
## 3081 217.1512 1794.767
## 3082 217.1512 1794.767
## 3083 217.1512 1794.767
## 3084 217.1512 1794.767
## 3085 217.1512 1794.767
## 3086 217.1512 1794.767
## 3087 217.1512 1794.767
## 3088 217.1512 1794.767
## 3089 217.1512 1794.767
## 3090 217.1512 1794.767
## 3091 217.1512 1794.767
## 3092 217.1512 1794.767
## 3093 217.1512 1794.767
## 3094 217.1512 1794.767
## 3095 217.1512 1794.767
## 3096 217.1512 1794.767
## 3097 5319.7674 8750.581
## 3098 5319.7674 8750.581
## 3099 5319.7674 8750.581
## 3100 5319.7674 8750.581
## 3101 5319.7674 8750.581
## 3102 5319.7674 8750.581
## 3103 5319.7674 8750.581
## 3104 5319.7674 8750.581
## 3105 5319.7674 8750.581
## 3106 5319.7674 8750.581
## 3107 5319.7674 8750.581
## 3108 5319.7674 8750.581
## 3109 5319.7674 8750.581
## 3110 5319.7674 8750.581
## 3111 5319.7674 8750.581
## 3112 5319.7674 8750.581
## 3113 5319.7674 8750.581
## 3114 5319.7674 8750.581
## 3115 5319.7674 8750.581
## 3116 5319.7674 8750.581
## 3117 5319.7674 8750.581
## 3118 5319.7674 8750.581
## 3119 5319.7674 8750.581
## 3120 5319.7674 8750.581
## 3121 2879.6512 12280.814
## 3122 2879.6512 12280.814
## 3123 2879.6512 12280.814
## 3124 2879.6512 12280.814
## 3125 2879.6512 12280.814
## 3126 2879.6512 12280.814
## 3127 2879.6512 12280.814
## 3128 2879.6512 12280.814
## 3129 2879.6512 12280.814
## 3130 2879.6512 12280.814
## 3131 2879.6512 12280.814
## 3132 2879.6512 12280.814
## 3133 2879.6512 12280.814
## 3134 2879.6512 12280.814
## 3135 2879.6512 12280.814
## 3136 2879.6512 12280.814
## 3137 2879.6512 12280.814
## 3138 2879.6512 12280.814
## 3139 2879.6512 12280.814
## 3140 2879.6512 12280.814
## 3141 2879.6512 12280.814
## 3142 2879.6512 12280.814
## 3143 2879.6512 12280.814
## 3144 2879.6512 12280.814
## 3145 4534.8837 15790.116
## 3146 4534.8837 15790.116
## 3147 4534.8837 15790.116
## 3148 4534.8837 15790.116
## 3149 4534.8837 15790.116
## 3150 4534.8837 15790.116
## 3151 4534.8837 15790.116
## 3152 4534.8837 15790.116
## 3153 4534.8837 15790.116
## 3154 4534.8837 15790.116
## 3155 4534.8837 15790.116
## 3156 4534.8837 15790.116
## 3157 4534.8837 15790.116
## 3158 4534.8837 15790.116
## 3159 4534.8837 15790.116
## 3160 4534.8837 15790.116
## 3161 4534.8837 15790.116
## 3162 4534.8837 15790.116
## 3163 4534.8837 15790.116
## 3164 4534.8837 15790.116
## 3165 4534.8837 15790.116
## 3166 4534.8837 15790.116
## 3167 4534.8837 15790.116
## 3168 4534.8837 15790.116
## 3169 3226.7442 12861.628
## 3170 3226.7442 12861.628
## 3171 3226.7442 12861.628
## 3172 3226.7442 12861.628
## 3173 3226.7442 12861.628
## 3174 3226.7442 12861.628
## 3175 3226.7442 12861.628
## 3176 3226.7442 12861.628
## 3177 3226.7442 12861.628
## 3178 3226.7442 12861.628
## 3179 3226.7442 12861.628
## 3180 3226.7442 12861.628
## 3181 3226.7442 12861.628
## 3182 3226.7442 12861.628
## 3183 3226.7442 12861.628
## 3184 3226.7442 12861.628
## 3185 3226.7442 12861.628
## 3186 3226.7442 12861.628
## 3187 3226.7442 12861.628
## 3188 3226.7442 12861.628
## 3189 3226.7442 12861.628
## 3190 3226.7442 12861.628
## 3191 3226.7442 12861.628
## 3192 3226.7442 12861.628
## 3193 2659.8837 7986.628
## 3194 2659.8837 7986.628
## 3195 2659.8837 7986.628
## 3196 2659.8837 7986.628
## 3197 2659.8837 7986.628
## 3198 2659.8837 7986.628
## 3199 2659.8837 7986.628
## 3200 2659.8837 7986.628
## 3201 2659.8837 7986.628
## 3202 2659.8837 7986.628
## 3203 2659.8837 7986.628
## 3204 2659.8837 7986.628
## 3205 2659.8837 7986.628
## 3206 2659.8837 7986.628
## 3207 2659.8837 7986.628
## 3208 2659.8837 7986.628
## 3209 2659.8837 7986.628
## 3210 2659.8837 7986.628
## 3211 2659.8837 7986.628
## 3212 2659.8837 7986.628
## 3213 2659.8837 7986.628
## 3214 2659.8837 7986.628
## 3215 2659.8837 7986.628
## 3216 2659.8837 7986.628
## 3217 4765.9884 12342.733
## 3218 4765.9884 12342.733
## 3219 4765.9884 12342.733
## 3220 4765.9884 12342.733
## 3221 4765.9884 12342.733
## 3222 4765.9884 12342.733
## 3223 4765.9884 12342.733
## 3224 4765.9884 12342.733
## 3225 4765.9884 12342.733
## total_metaecosystem_Col_indiv total_metaecosystem_Eug_indiv
## 1 4812.20930 7834.88372
## 2 4812.20930 7834.88372
## 3 4812.20930 7834.88372
## 4 4812.20930 7834.88372
## 5 4812.20930 7834.88372
## 6 4812.20930 7834.88372
## 7 4812.20930 7834.88372
## 8 4812.20930 7834.88372
## 9 4812.20930 7834.88372
## 10 4812.20930 7834.88372
## 11 4812.20930 7834.88372
## 12 4812.20930 7834.88372
## 13 4812.20930 7834.88372
## 14 4812.20930 7834.88372
## 15 4812.20930 7834.88372
## 16 4812.20930 7834.88372
## 17 4812.20930 7834.88372
## 18 4812.20930 7834.88372
## 19 4812.20930 7834.88372
## 20 4812.20930 7834.88372
## 21 4812.20930 7834.88372
## 22 4812.20930 7834.88372
## 23 4812.20930 7834.88372
## 24 4812.20930 7834.88372
## 25 20305.81395 3057.55814
## 26 20305.81395 3057.55814
## 27 20305.81395 3057.55814
## 28 20305.81395 3057.55814
## 29 20305.81395 3057.55814
## 30 20305.81395 3057.55814
## 31 20305.81395 3057.55814
## 32 20305.81395 3057.55814
## 33 20305.81395 3057.55814
## 34 20305.81395 3057.55814
## 35 20305.81395 3057.55814
## 36 20305.81395 3057.55814
## 37 20305.81395 3057.55814
## 38 20305.81395 3057.55814
## 39 20305.81395 3057.55814
## 40 20305.81395 3057.55814
## 41 20305.81395 3057.55814
## 42 20305.81395 3057.55814
## 43 20305.81395 3057.55814
## 44 20305.81395 3057.55814
## 45 20305.81395 3057.55814
## 46 20305.81395 3057.55814
## 47 20305.81395 3057.55814
## 48 20305.81395 3057.55814
## 49 16356.97674 218.02326
## 50 16356.97674 218.02326
## 51 16356.97674 218.02326
## 52 16356.97674 218.02326
## 53 16356.97674 218.02326
## 54 16356.97674 218.02326
## 55 16356.97674 218.02326
## 56 16356.97674 218.02326
## 57 16356.97674 218.02326
## 58 16356.97674 218.02326
## 59 16356.97674 218.02326
## 60 16356.97674 218.02326
## 61 16356.97674 218.02326
## 62 16356.97674 218.02326
## 63 16356.97674 218.02326
## 64 16356.97674 218.02326
## 65 16356.97674 218.02326
## 66 16356.97674 218.02326
## 67 16356.97674 218.02326
## 68 16356.97674 218.02326
## 69 16356.97674 218.02326
## 70 16356.97674 218.02326
## 71 16356.97674 218.02326
## 72 16356.97674 218.02326
## 73 6973.25581 0.00000
## 74 6973.25581 0.00000
## 75 6973.25581 0.00000
## 76 6973.25581 0.00000
## 77 6973.25581 0.00000
## 78 6973.25581 0.00000
## 79 6973.25581 0.00000
## 80 6973.25581 0.00000
## 81 6973.25581 0.00000
## 82 6973.25581 0.00000
## 83 6973.25581 0.00000
## 84 6973.25581 0.00000
## 85 6973.25581 0.00000
## 86 6973.25581 0.00000
## 87 6973.25581 0.00000
## 88 6973.25581 0.00000
## 89 6973.25581 0.00000
## 90 6973.25581 0.00000
## 91 6973.25581 0.00000
## 92 6973.25581 0.00000
## 93 6973.25581 0.00000
## 94 6973.25581 0.00000
## 95 6973.25581 0.00000
## 96 6973.25581 0.00000
## 97 3912.20930 0.00000
## 98 3912.20930 0.00000
## 99 3912.20930 0.00000
## 100 3912.20930 0.00000
## 101 3912.20930 0.00000
## 102 3912.20930 0.00000
## 103 3912.20930 0.00000
## 104 3912.20930 0.00000
## 105 3912.20930 0.00000
## 106 3912.20930 0.00000
## 107 3912.20930 0.00000
## 108 3912.20930 0.00000
## 109 3912.20930 0.00000
## 110 3912.20930 0.00000
## 111 3912.20930 0.00000
## 112 3912.20930 0.00000
## 113 3912.20930 0.00000
## 114 3912.20930 0.00000
## 115 3912.20930 0.00000
## 116 3912.20930 0.00000
## 117 3912.20930 0.00000
## 118 3912.20930 0.00000
## 119 3912.20930 0.00000
## 120 3912.20930 0.00000
## 121 0.00000 0.00000
## 122 0.00000 0.00000
## 123 0.00000 0.00000
## 124 0.00000 0.00000
## 125 0.00000 0.00000
## 126 0.00000 0.00000
## 127 0.00000 0.00000
## 128 0.00000 0.00000
## 129 0.00000 0.00000
## 130 0.00000 0.00000
## 131 0.00000 0.00000
## 132 0.00000 0.00000
## 133 0.00000 0.00000
## 134 0.00000 0.00000
## 135 0.00000 0.00000
## 136 0.00000 0.00000
## 137 0.00000 0.00000
## 138 0.00000 0.00000
## 139 0.00000 0.00000
## 140 0.00000 0.00000
## 141 0.00000 0.00000
## 142 0.00000 0.00000
## 143 0.00000 0.00000
## 144 0.00000 0.00000
## 145 418.60465 0.00000
## 146 418.60465 0.00000
## 147 418.60465 0.00000
## 148 418.60465 0.00000
## 149 418.60465 0.00000
## 150 418.60465 0.00000
## 151 418.60465 0.00000
## 152 418.60465 0.00000
## 153 418.60465 0.00000
## 154 418.60465 0.00000
## 155 418.60465 0.00000
## 156 418.60465 0.00000
## 157 418.60465 0.00000
## 158 418.60465 0.00000
## 159 418.60465 0.00000
## 160 418.60465 0.00000
## 161 418.60465 0.00000
## 162 418.60465 0.00000
## 163 418.60465 0.00000
## 164 418.60465 0.00000
## 165 418.60465 0.00000
## 166 418.60465 0.00000
## 167 418.60465 0.00000
## 168 418.60465 0.00000
## 169 0.00000 1090.11628
## 170 0.00000 1090.11628
## 171 0.00000 1090.11628
## 172 0.00000 1090.11628
## 173 0.00000 1090.11628
## 174 0.00000 1090.11628
## 175 0.00000 1090.11628
## 176 0.00000 1090.11628
## 177 0.00000 1090.11628
## 178 0.00000 1090.11628
## 179 0.00000 1090.11628
## 180 0.00000 1090.11628
## 181 0.00000 1090.11628
## 182 0.00000 1090.11628
## 183 0.00000 1090.11628
## 184 0.00000 1090.11628
## 185 0.00000 1090.11628
## 186 0.00000 1090.11628
## 187 0.00000 1090.11628
## 188 0.00000 1090.11628
## 189 0.00000 1090.11628
## 190 0.00000 1090.11628
## 191 0.00000 1090.11628
## 192 0.00000 1090.11628
## 193 4812.20930 7834.88372
## 194 4812.20930 7834.88372
## 195 4812.20930 7834.88372
## 196 4812.20930 7834.88372
## 197 4812.20930 7834.88372
## 198 4812.20930 7834.88372
## 199 4812.20930 7834.88372
## 200 4812.20930 7834.88372
## 201 4812.20930 7834.88372
## 202 4812.20930 7834.88372
## 203 4812.20930 7834.88372
## 204 4812.20930 7834.88372
## 205 4812.20930 7834.88372
## 206 4812.20930 7834.88372
## 207 4812.20930 7834.88372
## 208 4812.20930 7834.88372
## 209 4812.20930 7834.88372
## 210 4812.20930 7834.88372
## 211 4812.20930 7834.88372
## 212 4812.20930 7834.88372
## 213 4812.20930 7834.88372
## 214 4812.20930 7834.88372
## 215 4812.20930 7834.88372
## 216 4812.20930 7834.88372
## 217 12404.65116 1941.27907
## 218 12404.65116 1941.27907
## 219 12404.65116 1941.27907
## 220 12404.65116 1941.27907
## 221 12404.65116 1941.27907
## 222 12404.65116 1941.27907
## 223 12404.65116 1941.27907
## 224 12404.65116 1941.27907
## 225 12404.65116 1941.27907
## 226 12404.65116 1941.27907
## 227 12404.65116 1941.27907
## 228 12404.65116 1941.27907
## 229 12404.65116 1941.27907
## 230 12404.65116 1941.27907
## 231 12404.65116 1941.27907
## 232 12404.65116 1941.27907
## 233 12404.65116 1941.27907
## 234 12404.65116 1941.27907
## 235 12404.65116 1941.27907
## 236 12404.65116 1941.27907
## 237 12404.65116 1941.27907
## 238 12404.65116 1941.27907
## 239 12404.65116 1941.27907
## 240 12404.65116 1941.27907
## 241 5159.30233 218.02326
## 242 5159.30233 218.02326
## 243 5159.30233 218.02326
## 244 5159.30233 218.02326
## 245 5159.30233 218.02326
## 246 5159.30233 218.02326
## 247 5159.30233 218.02326
## 248 5159.30233 218.02326
## 249 5159.30233 218.02326
## 250 5159.30233 218.02326
## 251 5159.30233 218.02326
## 252 5159.30233 218.02326
## 253 5159.30233 218.02326
## 254 5159.30233 218.02326
## 255 5159.30233 218.02326
## 256 5159.30233 218.02326
## 257 5159.30233 218.02326
## 258 5159.30233 218.02326
## 259 5159.30233 218.02326
## 260 5159.30233 218.02326
## 261 5159.30233 218.02326
## 262 5159.30233 218.02326
## 263 5159.30233 218.02326
## 264 5159.30233 218.02326
## 265 3685.46512 1438.95349
## 266 3685.46512 1438.95349
## 267 3685.46512 1438.95349
## 268 3685.46512 1438.95349
## 269 3685.46512 1438.95349
## 270 3685.46512 1438.95349
## 271 3685.46512 1438.95349
## 272 3685.46512 1438.95349
## 273 3685.46512 1438.95349
## 274 3685.46512 1438.95349
## 275 3685.46512 1438.95349
## 276 3685.46512 1438.95349
## 277 3685.46512 1438.95349
## 278 3685.46512 1438.95349
## 279 3685.46512 1438.95349
## 280 3685.46512 1438.95349
## 281 3685.46512 1438.95349
## 282 3685.46512 1438.95349
## 283 3685.46512 1438.95349
## 284 3685.46512 1438.95349
## 285 3685.46512 1438.95349
## 286 3685.46512 1438.95349
## 287 3685.46512 1438.95349
## 288 3685.46512 1438.95349
## 289 397.67442 0.00000
## 290 397.67442 0.00000
## 291 397.67442 0.00000
## 292 397.67442 0.00000
## 293 397.67442 0.00000
## 294 397.67442 0.00000
## 295 397.67442 0.00000
## 296 397.67442 0.00000
## 297 397.67442 0.00000
## 298 397.67442 0.00000
## 299 397.67442 0.00000
## 300 397.67442 0.00000
## 301 397.67442 0.00000
## 302 397.67442 0.00000
## 303 397.67442 0.00000
## 304 397.67442 0.00000
## 305 397.67442 0.00000
## 306 397.67442 0.00000
## 307 397.67442 0.00000
## 308 397.67442 0.00000
## 309 397.67442 0.00000
## 310 397.67442 0.00000
## 311 397.67442 0.00000
## 312 397.67442 0.00000
## 313 837.20930 0.00000
## 314 837.20930 0.00000
## 315 837.20930 0.00000
## 316 837.20930 0.00000
## 317 837.20930 0.00000
## 318 837.20930 0.00000
## 319 837.20930 0.00000
## 320 837.20930 0.00000
## 321 837.20930 0.00000
## 322 837.20930 0.00000
## 323 837.20930 0.00000
## 324 837.20930 0.00000
## 325 837.20930 0.00000
## 326 837.20930 0.00000
## 327 837.20930 0.00000
## 328 837.20930 0.00000
## 329 837.20930 0.00000
## 330 837.20930 0.00000
## 331 837.20930 0.00000
## 332 837.20930 0.00000
## 333 837.20930 0.00000
## 334 837.20930 0.00000
## 335 837.20930 0.00000
## 336 837.20930 0.00000
## 337 0.00000 1312.50000
## 338 0.00000 1312.50000
## 339 0.00000 1312.50000
## 340 0.00000 1312.50000
## 341 0.00000 1312.50000
## 342 0.00000 1312.50000
## 343 0.00000 1312.50000
## 344 0.00000 1312.50000
## 345 0.00000 1312.50000
## 346 0.00000 1312.50000
## 347 0.00000 1312.50000
## 348 0.00000 1312.50000
## 349 0.00000 1312.50000
## 350 0.00000 1312.50000
## 351 0.00000 1312.50000
## 352 0.00000 1312.50000
## 353 0.00000 1312.50000
## 354 0.00000 1312.50000
## 355 0.00000 1312.50000
## 356 0.00000 1312.50000
## 357 0.00000 1312.50000
## 358 0.00000 1312.50000
## 359 0.00000 1312.50000
## 360 0.00000 1312.50000
## 361 0.00000 1962.20930
## 362 0.00000 1962.20930
## 363 0.00000 1962.20930
## 364 0.00000 1962.20930
## 365 0.00000 1962.20930
## 366 0.00000 1962.20930
## 367 0.00000 1962.20930
## 368 0.00000 1962.20930
## 369 0.00000 1962.20930
## 370 0.00000 1962.20930
## 371 0.00000 1962.20930
## 372 0.00000 1962.20930
## 373 0.00000 1962.20930
## 374 0.00000 1962.20930
## 375 0.00000 1962.20930
## 376 0.00000 1962.20930
## 377 0.00000 1962.20930
## 378 0.00000 1962.20930
## 379 0.00000 1962.20930
## 380 0.00000 1962.20930
## 381 0.00000 1962.20930
## 382 0.00000 1962.20930
## 383 0.00000 1962.20930
## 384 0.00000 1962.20930
## 385 4812.20930 7834.88372
## 386 4812.20930 7834.88372
## 387 4812.20930 7834.88372
## 388 4812.20930 7834.88372
## 389 4812.20930 7834.88372
## 390 4812.20930 7834.88372
## 391 4812.20930 7834.88372
## 392 4812.20930 7834.88372
## 393 4812.20930 7834.88372
## 394 4812.20930 7834.88372
## 395 4812.20930 7834.88372
## 396 4812.20930 7834.88372
## 397 4812.20930 7834.88372
## 398 4812.20930 7834.88372
## 399 4812.20930 7834.88372
## 400 4812.20930 7834.88372
## 401 4812.20930 7834.88372
## 402 4812.20930 7834.88372
## 403 4812.20930 7834.88372
## 404 4812.20930 7834.88372
## 405 4812.20930 7834.88372
## 406 4812.20930 7834.88372
## 407 4812.20930 7834.88372
## 408 4812.20930 7834.88372
## 409 17236.04651 2263.95349
## 410 17236.04651 2263.95349
## 411 17236.04651 2263.95349
## 412 17236.04651 2263.95349
## 413 17236.04651 2263.95349
## 414 17236.04651 2263.95349
## 415 17236.04651 2263.95349
## 416 17236.04651 2263.95349
## 417 17236.04651 2263.95349
## 418 17236.04651 2263.95349
## 419 17236.04651 2263.95349
## 420 17236.04651 2263.95349
## 421 17236.04651 2263.95349
## 422 17236.04651 2263.95349
## 423 17236.04651 2263.95349
## 424 17236.04651 2263.95349
## 425 17236.04651 2263.95349
## 426 17236.04651 2263.95349
## 427 17236.04651 2263.95349
## 428 17236.04651 2263.95349
## 429 17236.04651 2263.95349
## 430 17236.04651 2263.95349
## 431 17236.04651 2263.95349
## 432 17236.04651 2263.95349
## 433 6022.67442 218.02326
## 434 6022.67442 218.02326
## 435 6022.67442 218.02326
## 436 6022.67442 218.02326
## 437 6022.67442 218.02326
## 438 6022.67442 218.02326
## 439 6022.67442 218.02326
## 440 6022.67442 218.02326
## 441 6022.67442 218.02326
## 442 6022.67442 218.02326
## 443 6022.67442 218.02326
## 444 6022.67442 218.02326
## 445 6022.67442 218.02326
## 446 6022.67442 218.02326
## 447 6022.67442 218.02326
## 448 6022.67442 218.02326
## 449 6022.67442 218.02326
## 450 6022.67442 218.02326
## 451 6022.67442 218.02326
## 452 6022.67442 218.02326
## 453 6022.67442 218.02326
## 454 6022.67442 218.02326
## 455 6022.67442 218.02326
## 456 6022.67442 218.02326
## 457 4060.46512 837.20930
## 458 4060.46512 837.20930
## 459 4060.46512 837.20930
## 460 4060.46512 837.20930
## 461 4060.46512 837.20930
## 462 4060.46512 837.20930
## 463 4060.46512 837.20930
## 464 4060.46512 837.20930
## 465 4060.46512 837.20930
## 466 4060.46512 837.20930
## 467 4060.46512 837.20930
## 468 4060.46512 837.20930
## 469 4060.46512 837.20930
## 470 4060.46512 837.20930
## 471 4060.46512 837.20930
## 472 4060.46512 837.20930
## 473 4060.46512 837.20930
## 474 4060.46512 837.20930
## 475 4060.46512 837.20930
## 476 4060.46512 837.20930
## 477 4060.46512 837.20930
## 478 4060.46512 837.20930
## 479 4060.46512 837.20930
## 480 4060.46512 837.20930
## 481 397.67442 0.00000
## 482 397.67442 0.00000
## 483 397.67442 0.00000
## 484 397.67442 0.00000
## 485 397.67442 0.00000
## 486 397.67442 0.00000
## 487 397.67442 0.00000
## 488 397.67442 0.00000
## 489 397.67442 0.00000
## 490 397.67442 0.00000
## 491 397.67442 0.00000
## 492 397.67442 0.00000
## 493 397.67442 0.00000
## 494 397.67442 0.00000
## 495 397.67442 0.00000
## 496 397.67442 0.00000
## 497 397.67442 0.00000
## 498 397.67442 0.00000
## 499 397.67442 0.00000
## 500 397.67442 0.00000
## 501 397.67442 0.00000
## 502 397.67442 0.00000
## 503 397.67442 0.00000
## 504 397.67442 0.00000
## 505 0.00000 0.00000
## 506 0.00000 0.00000
## 507 0.00000 0.00000
## 508 0.00000 0.00000
## 509 0.00000 0.00000
## 510 0.00000 0.00000
## 511 0.00000 0.00000
## 512 0.00000 0.00000
## 513 0.00000 0.00000
## 514 0.00000 0.00000
## 515 0.00000 0.00000
## 516 0.00000 0.00000
## 517 0.00000 0.00000
## 518 0.00000 0.00000
## 519 0.00000 0.00000
## 520 0.00000 0.00000
## 521 0.00000 0.00000
## 522 0.00000 0.00000
## 523 0.00000 0.00000
## 524 0.00000 0.00000
## 525 0.00000 0.00000
## 526 0.00000 0.00000
## 527 0.00000 0.00000
## 528 0.00000 0.00000
## 529 327.03488 859.01163
## 530 327.03488 859.01163
## 531 327.03488 859.01163
## 532 327.03488 859.01163
## 533 327.03488 859.01163
## 534 327.03488 859.01163
## 535 327.03488 859.01163
## 536 327.03488 859.01163
## 537 327.03488 859.01163
## 538 327.03488 859.01163
## 539 327.03488 859.01163
## 540 327.03488 859.01163
## 541 327.03488 859.01163
## 542 327.03488 859.01163
## 543 327.03488 859.01163
## 544 327.03488 859.01163
## 545 327.03488 859.01163
## 546 327.03488 859.01163
## 547 327.03488 859.01163
## 548 327.03488 859.01163
## 549 327.03488 859.01163
## 550 327.03488 859.01163
## 551 327.03488 859.01163
## 552 327.03488 859.01163
## 553 0.00000 1090.11628
## 554 0.00000 1090.11628
## 555 0.00000 1090.11628
## 556 0.00000 1090.11628
## 557 0.00000 1090.11628
## 558 0.00000 1090.11628
## 559 0.00000 1090.11628
## 560 0.00000 1090.11628
## 561 0.00000 1090.11628
## 562 0.00000 1090.11628
## 563 0.00000 1090.11628
## 564 0.00000 1090.11628
## 565 0.00000 1090.11628
## 566 0.00000 1090.11628
## 567 0.00000 1090.11628
## 568 0.00000 1090.11628
## 569 0.00000 1090.11628
## 570 0.00000 1090.11628
## 571 0.00000 1090.11628
## 572 0.00000 1090.11628
## 573 0.00000 1090.11628
## 574 0.00000 1090.11628
## 575 0.00000 1090.11628
## 576 0.00000 1090.11628
## 577 4812.20930 7834.88372
## 578 4812.20930 7834.88372
## 579 4812.20930 7834.88372
## 580 4812.20930 7834.88372
## 581 4812.20930 7834.88372
## 582 4812.20930 7834.88372
## 583 4812.20930 7834.88372
## 584 4812.20930 7834.88372
## 585 4812.20930 7834.88372
## 586 4812.20930 7834.88372
## 587 4812.20930 7834.88372
## 588 4812.20930 7834.88372
## 589 4812.20930 7834.88372
## 590 4812.20930 7834.88372
## 591 4812.20930 7834.88372
## 592 4812.20930 7834.88372
## 593 4812.20930 7834.88372
## 594 4812.20930 7834.88372
## 595 4812.20930 7834.88372
## 596 4812.20930 7834.88372
## 597 4812.20930 7834.88372
## 598 4812.20930 7834.88372
## 599 4812.20930 7834.88372
## 600 4812.20930 7834.88372
## 601 11567.44186 877.32558
## 602 11567.44186 877.32558
## 603 11567.44186 877.32558
## 604 11567.44186 877.32558
## 605 11567.44186 877.32558
## 606 11567.44186 877.32558
## 607 11567.44186 877.32558
## 608 11567.44186 877.32558
## 609 11567.44186 877.32558
## 610 11567.44186 877.32558
## 611 11567.44186 877.32558
## 612 11567.44186 877.32558
## 613 11567.44186 877.32558
## 614 11567.44186 877.32558
## 615 11567.44186 877.32558
## 616 11567.44186 877.32558
## 617 11567.44186 877.32558
## 618 11567.44186 877.32558
## 619 11567.44186 877.32558
## 620 11567.44186 877.32558
## 621 11567.44186 877.32558
## 622 11567.44186 877.32558
## 623 11567.44186 877.32558
## 624 11567.44186 877.32558
## 625 2072.09302 218.02326
## 626 2072.09302 218.02326
## 627 2072.09302 218.02326
## 628 2072.09302 218.02326
## 629 2072.09302 218.02326
## 630 2072.09302 218.02326
## 631 2072.09302 218.02326
## 632 2072.09302 218.02326
## 633 2072.09302 218.02326
## 634 2072.09302 218.02326
## 635 2072.09302 218.02326
## 636 2072.09302 218.02326
## 637 2072.09302 218.02326
## 638 2072.09302 218.02326
## 639 2072.09302 218.02326
## 640 2072.09302 218.02326
## 641 2072.09302 218.02326
## 642 2072.09302 218.02326
## 643 2072.09302 218.02326
## 644 2072.09302 218.02326
## 645 2072.09302 218.02326
## 646 2072.09302 218.02326
## 647 2072.09302 218.02326
## 648 2072.09302 218.02326
## 649 1513.95349 0.00000
## 650 1513.95349 0.00000
## 651 1513.95349 0.00000
## 652 1513.95349 0.00000
## 653 1513.95349 0.00000
## 654 1513.95349 0.00000
## 655 1513.95349 0.00000
## 656 1513.95349 0.00000
## 657 1513.95349 0.00000
## 658 1513.95349 0.00000
## 659 1513.95349 0.00000
## 660 1513.95349 0.00000
## 661 1513.95349 0.00000
## 662 1513.95349 0.00000
## 663 1513.95349 0.00000
## 664 1513.95349 0.00000
## 665 1513.95349 0.00000
## 666 1513.95349 0.00000
## 667 1513.95349 0.00000
## 668 1513.95349 0.00000
## 669 1513.95349 0.00000
## 670 1513.95349 0.00000
## 671 1513.95349 0.00000
## 672 1513.95349 0.00000
## 673 397.67442 287.79070
## 674 397.67442 287.79070
## 675 397.67442 287.79070
## 676 397.67442 287.79070
## 677 397.67442 287.79070
## 678 397.67442 287.79070
## 679 397.67442 287.79070
## 680 397.67442 287.79070
## 681 397.67442 287.79070
## 682 397.67442 287.79070
## 683 397.67442 287.79070
## 684 397.67442 287.79070
## 685 397.67442 287.79070
## 686 397.67442 287.79070
## 687 397.67442 287.79070
## 688 397.67442 287.79070
## 689 397.67442 287.79070
## 690 397.67442 287.79070
## 691 397.67442 287.79070
## 692 397.67442 287.79070
## 693 397.67442 287.79070
## 694 397.67442 287.79070
## 695 397.67442 287.79070
## 696 397.67442 287.79070
## 697 0.00000 1090.11628
## 698 0.00000 1090.11628
## 699 0.00000 1090.11628
## 700 0.00000 1090.11628
## 701 0.00000 1090.11628
## 702 0.00000 1090.11628
## 703 0.00000 1090.11628
## 704 0.00000 1090.11628
## 705 0.00000 1090.11628
## 706 0.00000 1090.11628
## 707 0.00000 1090.11628
## 708 0.00000 1090.11628
## 709 0.00000 1090.11628
## 710 0.00000 1090.11628
## 711 0.00000 1090.11628
## 712 0.00000 1090.11628
## 713 0.00000 1090.11628
## 714 0.00000 1090.11628
## 715 0.00000 1090.11628
## 716 0.00000 1090.11628
## 717 0.00000 1090.11628
## 718 0.00000 1090.11628
## 719 0.00000 1090.11628
## 720 0.00000 1090.11628
## 721 0.00000 505.81395
## 722 0.00000 505.81395
## 723 0.00000 505.81395
## 724 0.00000 505.81395
## 725 0.00000 505.81395
## 726 0.00000 505.81395
## 727 0.00000 505.81395
## 728 0.00000 505.81395
## 729 0.00000 505.81395
## 730 0.00000 505.81395
## 731 0.00000 505.81395
## 732 0.00000 505.81395
## 733 0.00000 505.81395
## 734 0.00000 505.81395
## 735 0.00000 505.81395
## 736 0.00000 505.81395
## 737 0.00000 505.81395
## 738 0.00000 505.81395
## 739 0.00000 505.81395
## 740 0.00000 505.81395
## 741 0.00000 505.81395
## 742 0.00000 505.81395
## 743 0.00000 505.81395
## 744 0.00000 505.81395
## 745 0.00000 0.00000
## 746 0.00000 0.00000
## 747 0.00000 0.00000
## 748 0.00000 0.00000
## 749 0.00000 0.00000
## 750 0.00000 0.00000
## 751 0.00000 0.00000
## 752 0.00000 0.00000
## 753 0.00000 0.00000
## 754 0.00000 0.00000
## 755 0.00000 0.00000
## 756 0.00000 0.00000
## 757 0.00000 0.00000
## 758 0.00000 0.00000
## 759 0.00000 0.00000
## 760 0.00000 0.00000
## 761 0.00000 0.00000
## 762 0.00000 0.00000
## 763 0.00000 0.00000
## 764 0.00000 0.00000
## 765 0.00000 0.00000
## 766 0.00000 0.00000
## 767 0.00000 0.00000
## 768 0.00000 0.00000
## 769 4812.20930 7834.88372
## 770 4812.20930 7834.88372
## 771 4812.20930 7834.88372
## 772 4812.20930 7834.88372
## 773 4812.20930 7834.88372
## 774 4812.20930 7834.88372
## 775 4812.20930 7834.88372
## 776 4812.20930 7834.88372
## 777 4812.20930 7834.88372
## 778 4812.20930 7834.88372
## 779 4812.20930 7834.88372
## 780 4812.20930 7834.88372
## 781 4812.20930 7834.88372
## 782 4812.20930 7834.88372
## 783 4812.20930 7834.88372
## 784 4812.20930 7834.88372
## 785 4812.20930 7834.88372
## 786 4812.20930 7834.88372
## 787 4812.20930 7834.88372
## 788 4812.20930 7834.88372
## 789 4812.20930 7834.88372
## 790 4812.20930 7834.88372
## 791 4812.20930 7834.88372
## 792 4812.20930 7834.88372
## 793 6587.79070 1967.44186
## 794 6587.79070 1967.44186
## 795 6587.79070 1967.44186
## 796 6587.79070 1967.44186
## 797 6587.79070 1967.44186
## 798 6587.79070 1967.44186
## 799 6587.79070 1967.44186
## 800 6587.79070 1967.44186
## 801 6587.79070 1967.44186
## 802 6587.79070 1967.44186
## 803 6587.79070 1967.44186
## 804 6587.79070 1967.44186
## 805 6587.79070 1967.44186
## 806 6587.79070 1967.44186
## 807 6587.79070 1967.44186
## 808 6587.79070 1967.44186
## 809 6587.79070 1967.44186
## 810 6587.79070 1967.44186
## 811 6587.79070 1967.44186
## 812 6587.79070 1967.44186
## 813 6587.79070 1967.44186
## 814 6587.79070 1967.44186
## 815 6587.79070 1967.44186
## 816 6587.79070 1967.44186
## 817 4200.00000 218.02326
## 818 4200.00000 218.02326
## 819 4200.00000 218.02326
## 820 4200.00000 218.02326
## 821 4200.00000 218.02326
## 822 4200.00000 218.02326
## 823 4200.00000 218.02326
## 824 4200.00000 218.02326
## 825 4200.00000 218.02326
## 826 4200.00000 218.02326
## 827 4200.00000 218.02326
## 828 4200.00000 218.02326
## 829 4200.00000 218.02326
## 830 4200.00000 218.02326
## 831 4200.00000 218.02326
## 832 4200.00000 218.02326
## 833 4200.00000 218.02326
## 834 4200.00000 218.02326
## 835 4200.00000 218.02326
## 836 4200.00000 218.02326
## 837 4200.00000 218.02326
## 838 4200.00000 218.02326
## 839 4200.00000 218.02326
## 840 4200.00000 218.02326
## 841 2202.90698 0.00000
## 842 2202.90698 0.00000
## 843 2202.90698 0.00000
## 844 2202.90698 0.00000
## 845 2202.90698 0.00000
## 846 2202.90698 0.00000
## 847 2202.90698 0.00000
## 848 2202.90698 0.00000
## 849 2202.90698 0.00000
## 850 2202.90698 0.00000
## 851 2202.90698 0.00000
## 852 2202.90698 0.00000
## 853 2202.90698 0.00000
## 854 2202.90698 0.00000
## 855 2202.90698 0.00000
## 856 2202.90698 0.00000
## 857 2202.90698 0.00000
## 858 2202.90698 0.00000
## 859 2202.90698 0.00000
## 860 2202.90698 0.00000
## 861 2202.90698 0.00000
## 862 2202.90698 0.00000
## 863 2202.90698 0.00000
## 864 2202.90698 0.00000
## 865 397.67442 0.00000
## 866 397.67442 0.00000
## 867 397.67442 0.00000
## 868 397.67442 0.00000
## 869 397.67442 0.00000
## 870 397.67442 0.00000
## 871 397.67442 0.00000
## 872 397.67442 0.00000
## 873 397.67442 0.00000
## 874 397.67442 0.00000
## 875 397.67442 0.00000
## 876 397.67442 0.00000
## 877 397.67442 0.00000
## 878 397.67442 0.00000
## 879 397.67442 0.00000
## 880 397.67442 0.00000
## 881 397.67442 0.00000
## 882 397.67442 0.00000
## 883 397.67442 0.00000
## 884 397.67442 0.00000
## 885 397.67442 0.00000
## 886 397.67442 0.00000
## 887 397.67442 0.00000
## 888 397.67442 0.00000
## 889 0.00000 0.00000
## 890 0.00000 0.00000
## 891 0.00000 0.00000
## 892 0.00000 0.00000
## 893 0.00000 0.00000
## 894 0.00000 0.00000
## 895 0.00000 0.00000
## 896 0.00000 0.00000
## 897 0.00000 0.00000
## 898 0.00000 0.00000
## 899 0.00000 0.00000
## 900 0.00000 0.00000
## 901 0.00000 0.00000
## 902 0.00000 0.00000
## 903 0.00000 0.00000
## 904 0.00000 0.00000
## 905 0.00000 0.00000
## 906 0.00000 0.00000
## 907 0.00000 0.00000
## 908 0.00000 0.00000
## 909 0.00000 0.00000
## 910 0.00000 0.00000
## 911 0.00000 0.00000
## 912 0.00000 0.00000
## 913 0.00000 1609.01163
## 914 0.00000 1609.01163
## 915 0.00000 1609.01163
## 916 0.00000 1609.01163
## 917 0.00000 1609.01163
## 918 0.00000 1609.01163
## 919 0.00000 1609.01163
## 920 0.00000 1609.01163
## 921 0.00000 1609.01163
## 922 0.00000 1609.01163
## 923 0.00000 1609.01163
## 924 0.00000 1609.01163
## 925 0.00000 1609.01163
## 926 0.00000 1609.01163
## 927 0.00000 1609.01163
## 928 0.00000 1609.01163
## 929 0.00000 1609.01163
## 930 0.00000 1609.01163
## 931 0.00000 1609.01163
## 932 0.00000 1609.01163
## 933 0.00000 1609.01163
## 934 0.00000 1609.01163
## 935 0.00000 1609.01163
## 936 0.00000 1609.01163
## 937 0.00000 837.20930
## 938 0.00000 837.20930
## 939 0.00000 837.20930
## 940 0.00000 837.20930
## 941 0.00000 837.20930
## 942 0.00000 837.20930
## 943 0.00000 837.20930
## 944 0.00000 837.20930
## 945 0.00000 837.20930
## 946 0.00000 837.20930
## 947 0.00000 837.20930
## 948 0.00000 837.20930
## 949 0.00000 837.20930
## 950 0.00000 837.20930
## 951 0.00000 837.20930
## 952 0.00000 837.20930
## 953 0.00000 837.20930
## 954 0.00000 837.20930
## 955 0.00000 837.20930
## 956 0.00000 837.20930
## 957 0.00000 837.20930
## 958 0.00000 837.20930
## 959 0.00000 837.20930
## 960 0.00000 837.20930
## 961 4812.20930 7834.88372
## 962 4812.20930 7834.88372
## 963 4812.20930 7834.88372
## 964 4812.20930 7834.88372
## 965 4812.20930 7834.88372
## 966 4812.20930 7834.88372
## 967 4812.20930 7834.88372
## 968 4812.20930 7834.88372
## 969 4812.20930 7834.88372
## 970 4812.20930 7834.88372
## 971 4812.20930 7834.88372
## 972 4812.20930 7834.88372
## 973 4812.20930 7834.88372
## 974 4812.20930 7834.88372
## 975 4812.20930 7834.88372
## 976 4812.20930 7834.88372
## 977 4812.20930 7834.88372
## 978 4812.20930 7834.88372
## 979 4812.20930 7834.88372
## 980 4812.20930 7834.88372
## 981 4812.20930 7834.88372
## 982 4812.20930 7834.88372
## 983 4812.20930 7834.88372
## 984 4812.20930 7834.88372
## 985 19306.39535 2256.97674
## 986 19306.39535 2256.97674
## 987 19306.39535 2256.97674
## 988 19306.39535 2256.97674
## 989 19306.39535 2256.97674
## 990 19306.39535 2256.97674
## 991 19306.39535 2256.97674
## 992 19306.39535 2256.97674
## 993 19306.39535 2256.97674
## 994 19306.39535 2256.97674
## 995 19306.39535 2256.97674
## 996 19306.39535 2256.97674
## 997 19306.39535 2256.97674
## 998 19306.39535 2256.97674
## 999 19306.39535 2256.97674
## 1000 19306.39535 2256.97674
## 1001 19306.39535 2256.97674
## 1002 19306.39535 2256.97674
## 1003 19306.39535 2256.97674
## 1004 19306.39535 2256.97674
## 1005 19306.39535 2256.97674
## 1006 19306.39535 2256.97674
## 1007 19306.39535 2256.97674
## 1008 19306.39535 2256.97674
## 1009 16220.93023 1773.83721
## 1010 16220.93023 1773.83721
## 1011 16220.93023 1773.83721
## 1012 16220.93023 1773.83721
## 1013 16220.93023 1773.83721
## 1014 16220.93023 1773.83721
## 1015 16220.93023 1773.83721
## 1016 16220.93023 1773.83721
## 1017 16220.93023 1773.83721
## 1018 16220.93023 1773.83721
## 1019 16220.93023 1773.83721
## 1020 16220.93023 1773.83721
## 1021 16220.93023 1773.83721
## 1022 16220.93023 1773.83721
## 1023 16220.93023 1773.83721
## 1024 16220.93023 1773.83721
## 1025 16220.93023 1773.83721
## 1026 16220.93023 1773.83721
## 1027 16220.93023 1773.83721
## 1028 16220.93023 1773.83721
## 1029 16220.93023 1773.83721
## 1030 16220.93023 1773.83721
## 1031 16220.93023 1773.83721
## 1032 16220.93023 1773.83721
## 1033 7716.27907 0.00000
## 1034 7716.27907 0.00000
## 1035 7716.27907 0.00000
## 1036 7716.27907 0.00000
## 1037 7716.27907 0.00000
## 1038 7716.27907 0.00000
## 1039 7716.27907 0.00000
## 1040 7716.27907 0.00000
## 1041 7716.27907 0.00000
## 1042 7716.27907 0.00000
## 1043 7716.27907 0.00000
## 1044 7716.27907 0.00000
## 1045 7716.27907 0.00000
## 1046 7716.27907 0.00000
## 1047 7716.27907 0.00000
## 1048 7716.27907 0.00000
## 1049 7716.27907 0.00000
## 1050 7716.27907 0.00000
## 1051 7716.27907 0.00000
## 1052 7716.27907 0.00000
## 1053 7716.27907 0.00000
## 1054 7716.27907 0.00000
## 1055 7716.27907 0.00000
## 1056 7716.27907 0.00000
## 1057 4128.48837 0.00000
## 1058 4128.48837 0.00000
## 1059 4128.48837 0.00000
## 1060 4128.48837 0.00000
## 1061 4128.48837 0.00000
## 1062 4128.48837 0.00000
## 1063 4128.48837 0.00000
## 1064 4128.48837 0.00000
## 1065 4128.48837 0.00000
## 1066 4128.48837 0.00000
## 1067 4128.48837 0.00000
## 1068 4128.48837 0.00000
## 1069 4128.48837 0.00000
## 1070 4128.48837 0.00000
## 1071 4128.48837 0.00000
## 1072 4128.48837 0.00000
## 1073 4128.48837 0.00000
## 1074 4128.48837 0.00000
## 1075 4128.48837 0.00000
## 1076 4128.48837 0.00000
## 1077 4128.48837 0.00000
## 1078 4128.48837 0.00000
## 1079 4128.48837 0.00000
## 1080 4128.48837 0.00000
## 1081 286.04651 0.00000
## 1082 286.04651 0.00000
## 1083 286.04651 0.00000
## 1084 286.04651 0.00000
## 1085 286.04651 0.00000
## 1086 286.04651 0.00000
## 1087 286.04651 0.00000
## 1088 286.04651 0.00000
## 1089 286.04651 0.00000
## 1090 286.04651 0.00000
## 1091 286.04651 0.00000
## 1092 286.04651 0.00000
## 1093 286.04651 0.00000
## 1094 286.04651 0.00000
## 1095 286.04651 0.00000
## 1096 286.04651 0.00000
## 1097 286.04651 0.00000
## 1098 286.04651 0.00000
## 1099 286.04651 0.00000
## 1100 286.04651 0.00000
## 1101 286.04651 0.00000
## 1102 286.04651 0.00000
## 1103 286.04651 0.00000
## 1104 286.04651 0.00000
## 1105 418.60465 0.00000
## 1106 418.60465 0.00000
## 1107 418.60465 0.00000
## 1108 418.60465 0.00000
## 1109 418.60465 0.00000
## 1110 418.60465 0.00000
## 1111 418.60465 0.00000
## 1112 418.60465 0.00000
## 1113 418.60465 0.00000
## 1114 418.60465 0.00000
## 1115 418.60465 0.00000
## 1116 418.60465 0.00000
## 1117 418.60465 0.00000
## 1118 418.60465 0.00000
## 1119 418.60465 0.00000
## 1120 418.60465 0.00000
## 1121 418.60465 0.00000
## 1122 418.60465 0.00000
## 1123 418.60465 0.00000
## 1124 418.60465 0.00000
## 1125 418.60465 0.00000
## 1126 418.60465 0.00000
## 1127 418.60465 0.00000
## 1128 418.60465 0.00000
## 1129 0.00000 1090.11628
## 1130 0.00000 1090.11628
## 1131 0.00000 1090.11628
## 1132 0.00000 1090.11628
## 1133 0.00000 1090.11628
## 1134 0.00000 1090.11628
## 1135 0.00000 1090.11628
## 1136 0.00000 1090.11628
## 1137 0.00000 1090.11628
## 1138 0.00000 1090.11628
## 1139 0.00000 1090.11628
## 1140 0.00000 1090.11628
## 1141 0.00000 1090.11628
## 1142 0.00000 1090.11628
## 1143 0.00000 1090.11628
## 1144 0.00000 1090.11628
## 1145 0.00000 1090.11628
## 1146 0.00000 1090.11628
## 1147 0.00000 1090.11628
## 1148 0.00000 1090.11628
## 1149 0.00000 1090.11628
## 1150 0.00000 1090.11628
## 1151 0.00000 1090.11628
## 1152 0.00000 1090.11628
## 1153 4812.20930 7834.88372
## 1154 4812.20930 7834.88372
## 1155 4812.20930 7834.88372
## 1156 4812.20930 7834.88372
## 1157 4812.20930 7834.88372
## 1158 4812.20930 7834.88372
## 1159 4812.20930 7834.88372
## 1160 4812.20930 7834.88372
## 1161 4812.20930 7834.88372
## 1162 4812.20930 7834.88372
## 1163 4812.20930 7834.88372
## 1164 4812.20930 7834.88372
## 1165 4812.20930 7834.88372
## 1166 4812.20930 7834.88372
## 1167 4812.20930 7834.88372
## 1168 4812.20930 7834.88372
## 1169 4812.20930 7834.88372
## 1170 4812.20930 7834.88372
## 1171 4812.20930 7834.88372
## 1172 4812.20930 7834.88372
## 1173 4812.20930 7834.88372
## 1174 4812.20930 7834.88372
## 1175 4812.20930 7834.88372
## 1176 4812.20930 7834.88372
## 1177 11405.23256 1140.69767
## 1178 11405.23256 1140.69767
## 1179 11405.23256 1140.69767
## 1180 11405.23256 1140.69767
## 1181 11405.23256 1140.69767
## 1182 11405.23256 1140.69767
## 1183 11405.23256 1140.69767
## 1184 11405.23256 1140.69767
## 1185 11405.23256 1140.69767
## 1186 11405.23256 1140.69767
## 1187 11405.23256 1140.69767
## 1188 11405.23256 1140.69767
## 1189 11405.23256 1140.69767
## 1190 11405.23256 1140.69767
## 1191 11405.23256 1140.69767
## 1192 11405.23256 1140.69767
## 1193 11405.23256 1140.69767
## 1194 11405.23256 1140.69767
## 1195 11405.23256 1140.69767
## 1196 11405.23256 1140.69767
## 1197 11405.23256 1140.69767
## 1198 11405.23256 1140.69767
## 1199 11405.23256 1140.69767
## 1200 11405.23256 1140.69767
## 1201 5023.25581 1773.83721
## 1202 5023.25581 1773.83721
## 1203 5023.25581 1773.83721
## 1204 5023.25581 1773.83721
## 1205 5023.25581 1773.83721
## 1206 5023.25581 1773.83721
## 1207 5023.25581 1773.83721
## 1208 5023.25581 1773.83721
## 1209 5023.25581 1773.83721
## 1210 5023.25581 1773.83721
## 1211 5023.25581 1773.83721
## 1212 5023.25581 1773.83721
## 1213 5023.25581 1773.83721
## 1214 5023.25581 1773.83721
## 1215 5023.25581 1773.83721
## 1216 5023.25581 1773.83721
## 1217 5023.25581 1773.83721
## 1218 5023.25581 1773.83721
## 1219 5023.25581 1773.83721
## 1220 5023.25581 1773.83721
## 1221 5023.25581 1773.83721
## 1222 5023.25581 1773.83721
## 1223 5023.25581 1773.83721
## 1224 5023.25581 1773.83721
## 1225 4428.48837 1438.95349
## 1226 4428.48837 1438.95349
## 1227 4428.48837 1438.95349
## 1228 4428.48837 1438.95349
## 1229 4428.48837 1438.95349
## 1230 4428.48837 1438.95349
## 1231 4428.48837 1438.95349
## 1232 4428.48837 1438.95349
## 1233 4428.48837 1438.95349
## 1234 4428.48837 1438.95349
## 1235 4428.48837 1438.95349
## 1236 4428.48837 1438.95349
## 1237 4428.48837 1438.95349
## 1238 4428.48837 1438.95349
## 1239 4428.48837 1438.95349
## 1240 4428.48837 1438.95349
## 1241 4428.48837 1438.95349
## 1242 4428.48837 1438.95349
## 1243 4428.48837 1438.95349
## 1244 4428.48837 1438.95349
## 1245 4428.48837 1438.95349
## 1246 4428.48837 1438.95349
## 1247 4428.48837 1438.95349
## 1248 4428.48837 1438.95349
## 1249 613.95349 0.00000
## 1250 613.95349 0.00000
## 1251 613.95349 0.00000
## 1252 613.95349 0.00000
## 1253 613.95349 0.00000
## 1254 613.95349 0.00000
## 1255 613.95349 0.00000
## 1256 613.95349 0.00000
## 1257 613.95349 0.00000
## 1258 613.95349 0.00000
## 1259 613.95349 0.00000
## 1260 613.95349 0.00000
## 1261 613.95349 0.00000
## 1262 613.95349 0.00000
## 1263 613.95349 0.00000
## 1264 613.95349 0.00000
## 1265 613.95349 0.00000
## 1266 613.95349 0.00000
## 1267 613.95349 0.00000
## 1268 613.95349 0.00000
## 1269 613.95349 0.00000
## 1270 613.95349 0.00000
## 1271 613.95349 0.00000
## 1272 613.95349 0.00000
## 1273 1123.25581 0.00000
## 1274 1123.25581 0.00000
## 1275 1123.25581 0.00000
## 1276 1123.25581 0.00000
## 1277 1123.25581 0.00000
## 1278 1123.25581 0.00000
## 1279 1123.25581 0.00000
## 1280 1123.25581 0.00000
## 1281 1123.25581 0.00000
## 1282 1123.25581 0.00000
## 1283 1123.25581 0.00000
## 1284 1123.25581 0.00000
## 1285 1123.25581 0.00000
## 1286 1123.25581 0.00000
## 1287 1123.25581 0.00000
## 1288 1123.25581 0.00000
## 1289 1123.25581 0.00000
## 1290 1123.25581 0.00000
## 1291 1123.25581 0.00000
## 1292 1123.25581 0.00000
## 1293 1123.25581 0.00000
## 1294 1123.25581 0.00000
## 1295 1123.25581 0.00000
## 1296 1123.25581 0.00000
## 1297 0.00000 1312.50000
## 1298 0.00000 1312.50000
## 1299 0.00000 1312.50000
## 1300 0.00000 1312.50000
## 1301 0.00000 1312.50000
## 1302 0.00000 1312.50000
## 1303 0.00000 1312.50000
## 1304 0.00000 1312.50000
## 1305 0.00000 1312.50000
## 1306 0.00000 1312.50000
## 1307 0.00000 1312.50000
## 1308 0.00000 1312.50000
## 1309 0.00000 1312.50000
## 1310 0.00000 1312.50000
## 1311 0.00000 1312.50000
## 1312 0.00000 1312.50000
## 1313 0.00000 1312.50000
## 1314 0.00000 1312.50000
## 1315 0.00000 1312.50000
## 1316 0.00000 1312.50000
## 1317 0.00000 1312.50000
## 1318 0.00000 1312.50000
## 1319 0.00000 1312.50000
## 1320 0.00000 1312.50000
## 1321 0.00000 1962.20930
## 1322 0.00000 1962.20930
## 1323 0.00000 1962.20930
## 1324 0.00000 1962.20930
## 1325 0.00000 1962.20930
## 1326 0.00000 1962.20930
## 1327 0.00000 1962.20930
## 1328 0.00000 1962.20930
## 1329 0.00000 1962.20930
## 1330 0.00000 1962.20930
## 1331 0.00000 1962.20930
## 1332 0.00000 1962.20930
## 1333 0.00000 1962.20930
## 1334 0.00000 1962.20930
## 1335 0.00000 1962.20930
## 1336 0.00000 1962.20930
## 1337 0.00000 1962.20930
## 1338 0.00000 1962.20930
## 1339 0.00000 1962.20930
## 1340 0.00000 1962.20930
## 1341 0.00000 1962.20930
## 1342 0.00000 1962.20930
## 1343 0.00000 1962.20930
## 1344 0.00000 1962.20930
## 1345 4812.20930 7834.88372
## 1346 4812.20930 7834.88372
## 1347 4812.20930 7834.88372
## 1348 4812.20930 7834.88372
## 1349 4812.20930 7834.88372
## 1350 4812.20930 7834.88372
## 1351 4812.20930 7834.88372
## 1352 4812.20930 7834.88372
## 1353 4812.20930 7834.88372
## 1354 4812.20930 7834.88372
## 1355 4812.20930 7834.88372
## 1356 4812.20930 7834.88372
## 1357 4812.20930 7834.88372
## 1358 4812.20930 7834.88372
## 1359 4812.20930 7834.88372
## 1360 4812.20930 7834.88372
## 1361 4812.20930 7834.88372
## 1362 4812.20930 7834.88372
## 1363 4812.20930 7834.88372
## 1364 4812.20930 7834.88372
## 1365 4812.20930 7834.88372
## 1366 4812.20930 7834.88372
## 1367 4812.20930 7834.88372
## 1368 4812.20930 7834.88372
## 1369 16236.62791 1463.37209
## 1370 16236.62791 1463.37209
## 1371 16236.62791 1463.37209
## 1372 16236.62791 1463.37209
## 1373 16236.62791 1463.37209
## 1374 16236.62791 1463.37209
## 1375 16236.62791 1463.37209
## 1376 16236.62791 1463.37209
## 1377 16236.62791 1463.37209
## 1378 16236.62791 1463.37209
## 1379 16236.62791 1463.37209
## 1380 16236.62791 1463.37209
## 1381 16236.62791 1463.37209
## 1382 16236.62791 1463.37209
## 1383 16236.62791 1463.37209
## 1384 16236.62791 1463.37209
## 1385 16236.62791 1463.37209
## 1386 16236.62791 1463.37209
## 1387 16236.62791 1463.37209
## 1388 16236.62791 1463.37209
## 1389 16236.62791 1463.37209
## 1390 16236.62791 1463.37209
## 1391 16236.62791 1463.37209
## 1392 16236.62791 1463.37209
## 1393 5886.62791 1773.83721
## 1394 5886.62791 1773.83721
## 1395 5886.62791 1773.83721
## 1396 5886.62791 1773.83721
## 1397 5886.62791 1773.83721
## 1398 5886.62791 1773.83721
## 1399 5886.62791 1773.83721
## 1400 5886.62791 1773.83721
## 1401 5886.62791 1773.83721
## 1402 5886.62791 1773.83721
## 1403 5886.62791 1773.83721
## 1404 5886.62791 1773.83721
## 1405 5886.62791 1773.83721
## 1406 5886.62791 1773.83721
## 1407 5886.62791 1773.83721
## 1408 5886.62791 1773.83721
## 1409 5886.62791 1773.83721
## 1410 5886.62791 1773.83721
## 1411 5886.62791 1773.83721
## 1412 5886.62791 1773.83721
## 1413 5886.62791 1773.83721
## 1414 5886.62791 1773.83721
## 1415 5886.62791 1773.83721
## 1416 5886.62791 1773.83721
## 1417 4803.48837 837.20930
## 1418 4803.48837 837.20930
## 1419 4803.48837 837.20930
## 1420 4803.48837 837.20930
## 1421 4803.48837 837.20930
## 1422 4803.48837 837.20930
## 1423 4803.48837 837.20930
## 1424 4803.48837 837.20930
## 1425 4803.48837 837.20930
## 1426 4803.48837 837.20930
## 1427 4803.48837 837.20930
## 1428 4803.48837 837.20930
## 1429 4803.48837 837.20930
## 1430 4803.48837 837.20930
## 1431 4803.48837 837.20930
## 1432 4803.48837 837.20930
## 1433 4803.48837 837.20930
## 1434 4803.48837 837.20930
## 1435 4803.48837 837.20930
## 1436 4803.48837 837.20930
## 1437 4803.48837 837.20930
## 1438 4803.48837 837.20930
## 1439 4803.48837 837.20930
## 1440 4803.48837 837.20930
## 1441 613.95349 0.00000
## 1442 613.95349 0.00000
## 1443 613.95349 0.00000
## 1444 613.95349 0.00000
## 1445 613.95349 0.00000
## 1446 613.95349 0.00000
## 1447 613.95349 0.00000
## 1448 613.95349 0.00000
## 1449 613.95349 0.00000
## 1450 613.95349 0.00000
## 1451 613.95349 0.00000
## 1452 613.95349 0.00000
## 1453 613.95349 0.00000
## 1454 613.95349 0.00000
## 1455 613.95349 0.00000
## 1456 613.95349 0.00000
## 1457 613.95349 0.00000
## 1458 613.95349 0.00000
## 1459 613.95349 0.00000
## 1460 613.95349 0.00000
## 1461 613.95349 0.00000
## 1462 613.95349 0.00000
## 1463 613.95349 0.00000
## 1464 613.95349 0.00000
## 1465 286.04651 0.00000
## 1466 286.04651 0.00000
## 1467 286.04651 0.00000
## 1468 286.04651 0.00000
## 1469 286.04651 0.00000
## 1470 286.04651 0.00000
## 1471 286.04651 0.00000
## 1472 286.04651 0.00000
## 1473 286.04651 0.00000
## 1474 286.04651 0.00000
## 1475 286.04651 0.00000
## 1476 286.04651 0.00000
## 1477 286.04651 0.00000
## 1478 286.04651 0.00000
## 1479 286.04651 0.00000
## 1480 286.04651 0.00000
## 1481 286.04651 0.00000
## 1482 286.04651 0.00000
## 1483 286.04651 0.00000
## 1484 286.04651 0.00000
## 1485 286.04651 0.00000
## 1486 286.04651 0.00000
## 1487 286.04651 0.00000
## 1488 286.04651 0.00000
## 1489 327.03488 859.01163
## 1490 327.03488 859.01163
## 1491 327.03488 859.01163
## 1492 327.03488 859.01163
## 1493 327.03488 859.01163
## 1494 327.03488 859.01163
## 1495 327.03488 859.01163
## 1496 327.03488 859.01163
## 1497 327.03488 859.01163
## 1498 327.03488 859.01163
## 1499 327.03488 859.01163
## 1500 327.03488 859.01163
## 1501 327.03488 859.01163
## 1502 327.03488 859.01163
## 1503 327.03488 859.01163
## 1504 327.03488 859.01163
## 1505 327.03488 859.01163
## 1506 327.03488 859.01163
## 1507 327.03488 859.01163
## 1508 327.03488 859.01163
## 1509 327.03488 859.01163
## 1510 327.03488 859.01163
## 1511 327.03488 859.01163
## 1512 327.03488 859.01163
## 1513 0.00000 1090.11628
## 1514 0.00000 1090.11628
## 1515 0.00000 1090.11628
## 1516 0.00000 1090.11628
## 1517 0.00000 1090.11628
## 1518 0.00000 1090.11628
## 1519 0.00000 1090.11628
## 1520 0.00000 1090.11628
## 1521 0.00000 1090.11628
## 1522 0.00000 1090.11628
## 1523 0.00000 1090.11628
## 1524 0.00000 1090.11628
## 1525 0.00000 1090.11628
## 1526 0.00000 1090.11628
## 1527 0.00000 1090.11628
## 1528 0.00000 1090.11628
## 1529 0.00000 1090.11628
## 1530 0.00000 1090.11628
## 1531 0.00000 1090.11628
## 1532 0.00000 1090.11628
## 1533 0.00000 1090.11628
## 1534 0.00000 1090.11628
## 1535 0.00000 1090.11628
## 1536 0.00000 1090.11628
## 1537 4812.20930 7834.88372
## 1538 4812.20930 7834.88372
## 1539 4812.20930 7834.88372
## 1540 4812.20930 7834.88372
## 1541 4812.20930 7834.88372
## 1542 4812.20930 7834.88372
## 1543 4812.20930 7834.88372
## 1544 4812.20930 7834.88372
## 1545 4812.20930 7834.88372
## 1546 4812.20930 7834.88372
## 1547 4812.20930 7834.88372
## 1548 4812.20930 7834.88372
## 1549 4812.20930 7834.88372
## 1550 4812.20930 7834.88372
## 1551 4812.20930 7834.88372
## 1552 4812.20930 7834.88372
## 1553 4812.20930 7834.88372
## 1554 4812.20930 7834.88372
## 1555 4812.20930 7834.88372
## 1556 4812.20930 7834.88372
## 1557 4812.20930 7834.88372
## 1558 4812.20930 7834.88372
## 1559 4812.20930 7834.88372
## 1560 4812.20930 7834.88372
## 1561 10568.02326 76.74419
## 1562 10568.02326 76.74419
## 1563 10568.02326 76.74419
## 1564 10568.02326 76.74419
## 1565 10568.02326 76.74419
## 1566 10568.02326 76.74419
## 1567 10568.02326 76.74419
## 1568 10568.02326 76.74419
## 1569 10568.02326 76.74419
## 1570 10568.02326 76.74419
## 1571 10568.02326 76.74419
## 1572 10568.02326 76.74419
## 1573 10568.02326 76.74419
## 1574 10568.02326 76.74419
## 1575 10568.02326 76.74419
## 1576 10568.02326 76.74419
## 1577 10568.02326 76.74419
## 1578 10568.02326 76.74419
## 1579 10568.02326 76.74419
## 1580 10568.02326 76.74419
## 1581 10568.02326 76.74419
## 1582 10568.02326 76.74419
## 1583 10568.02326 76.74419
## 1584 10568.02326 76.74419
## 1585 1936.04651 1773.83721
## 1586 1936.04651 1773.83721
## 1587 1936.04651 1773.83721
## 1588 1936.04651 1773.83721
## 1589 1936.04651 1773.83721
## 1590 1936.04651 1773.83721
## 1591 1936.04651 1773.83721
## 1592 1936.04651 1773.83721
## 1593 1936.04651 1773.83721
## 1594 1936.04651 1773.83721
## 1595 1936.04651 1773.83721
## 1596 1936.04651 1773.83721
## 1597 1936.04651 1773.83721
## 1598 1936.04651 1773.83721
## 1599 1936.04651 1773.83721
## 1600 1936.04651 1773.83721
## 1601 1936.04651 1773.83721
## 1602 1936.04651 1773.83721
## 1603 1936.04651 1773.83721
## 1604 1936.04651 1773.83721
## 1605 1936.04651 1773.83721
## 1606 1936.04651 1773.83721
## 1607 1936.04651 1773.83721
## 1608 1936.04651 1773.83721
## 1609 2256.97674 0.00000
## 1610 2256.97674 0.00000
## 1611 2256.97674 0.00000
## 1612 2256.97674 0.00000
## 1613 2256.97674 0.00000
## 1614 2256.97674 0.00000
## 1615 2256.97674 0.00000
## 1616 2256.97674 0.00000
## 1617 2256.97674 0.00000
## 1618 2256.97674 0.00000
## 1619 2256.97674 0.00000
## 1620 2256.97674 0.00000
## 1621 2256.97674 0.00000
## 1622 2256.97674 0.00000
## 1623 2256.97674 0.00000
## 1624 2256.97674 0.00000
## 1625 2256.97674 0.00000
## 1626 2256.97674 0.00000
## 1627 2256.97674 0.00000
## 1628 2256.97674 0.00000
## 1629 2256.97674 0.00000
## 1630 2256.97674 0.00000
## 1631 2256.97674 0.00000
## 1632 2256.97674 0.00000
## 1633 613.95349 287.79070
## 1634 613.95349 287.79070
## 1635 613.95349 287.79070
## 1636 613.95349 287.79070
## 1637 613.95349 287.79070
## 1638 613.95349 287.79070
## 1639 613.95349 287.79070
## 1640 613.95349 287.79070
## 1641 613.95349 287.79070
## 1642 613.95349 287.79070
## 1643 613.95349 287.79070
## 1644 613.95349 287.79070
## 1645 613.95349 287.79070
## 1646 613.95349 287.79070
## 1647 613.95349 287.79070
## 1648 613.95349 287.79070
## 1649 613.95349 287.79070
## 1650 613.95349 287.79070
## 1651 613.95349 287.79070
## 1652 613.95349 287.79070
## 1653 613.95349 287.79070
## 1654 613.95349 287.79070
## 1655 613.95349 287.79070
## 1656 613.95349 287.79070
## 1657 286.04651 1090.11628
## 1658 286.04651 1090.11628
## 1659 286.04651 1090.11628
## 1660 286.04651 1090.11628
## 1661 286.04651 1090.11628
## 1662 286.04651 1090.11628
## 1663 286.04651 1090.11628
## 1664 286.04651 1090.11628
## 1665 286.04651 1090.11628
## 1666 286.04651 1090.11628
## 1667 286.04651 1090.11628
## 1668 286.04651 1090.11628
## 1669 286.04651 1090.11628
## 1670 286.04651 1090.11628
## 1671 286.04651 1090.11628
## 1672 286.04651 1090.11628
## 1673 286.04651 1090.11628
## 1674 286.04651 1090.11628
## 1675 286.04651 1090.11628
## 1676 286.04651 1090.11628
## 1677 286.04651 1090.11628
## 1678 286.04651 1090.11628
## 1679 286.04651 1090.11628
## 1680 286.04651 1090.11628
## 1681 0.00000 505.81395
## 1682 0.00000 505.81395
## 1683 0.00000 505.81395
## 1684 0.00000 505.81395
## 1685 0.00000 505.81395
## 1686 0.00000 505.81395
## 1687 0.00000 505.81395
## 1688 0.00000 505.81395
## 1689 0.00000 505.81395
## 1690 0.00000 505.81395
## 1691 0.00000 505.81395
## 1692 0.00000 505.81395
## 1693 0.00000 505.81395
## 1694 0.00000 505.81395
## 1695 0.00000 505.81395
## 1696 0.00000 505.81395
## 1697 0.00000 505.81395
## 1698 0.00000 505.81395
## 1699 0.00000 505.81395
## 1700 0.00000 505.81395
## 1701 0.00000 505.81395
## 1702 0.00000 505.81395
## 1703 0.00000 505.81395
## 1704 0.00000 505.81395
## 1705 0.00000 0.00000
## 1706 0.00000 0.00000
## 1707 0.00000 0.00000
## 1708 0.00000 0.00000
## 1709 0.00000 0.00000
## 1710 0.00000 0.00000
## 1711 0.00000 0.00000
## 1712 0.00000 0.00000
## 1713 0.00000 0.00000
## 1714 0.00000 0.00000
## 1715 0.00000 0.00000
## 1716 0.00000 0.00000
## 1717 0.00000 0.00000
## 1718 0.00000 0.00000
## 1719 0.00000 0.00000
## 1720 0.00000 0.00000
## 1721 0.00000 0.00000
## 1722 0.00000 0.00000
## 1723 0.00000 0.00000
## 1724 0.00000 0.00000
## 1725 0.00000 0.00000
## 1726 0.00000 0.00000
## 1727 0.00000 0.00000
## 1728 0.00000 0.00000
## 1729 4812.20930 7834.88372
## 1730 4812.20930 7834.88372
## 1731 4812.20930 7834.88372
## 1732 4812.20930 7834.88372
## 1733 4812.20930 7834.88372
## 1734 4812.20930 7834.88372
## 1735 4812.20930 7834.88372
## 1736 4812.20930 7834.88372
## 1737 4812.20930 7834.88372
## 1738 4812.20930 7834.88372
## 1739 4812.20930 7834.88372
## 1740 4812.20930 7834.88372
## 1741 4812.20930 7834.88372
## 1742 4812.20930 7834.88372
## 1743 4812.20930 7834.88372
## 1744 4812.20930 7834.88372
## 1745 4812.20930 7834.88372
## 1746 4812.20930 7834.88372
## 1747 4812.20930 7834.88372
## 1748 4812.20930 7834.88372
## 1749 4812.20930 7834.88372
## 1750 4812.20930 7834.88372
## 1751 4812.20930 7834.88372
## 1752 4812.20930 7834.88372
## 1753 5588.37209 1166.86047
## 1754 5588.37209 1166.86047
## 1755 5588.37209 1166.86047
## 1756 5588.37209 1166.86047
## 1757 5588.37209 1166.86047
## 1758 5588.37209 1166.86047
## 1759 5588.37209 1166.86047
## 1760 5588.37209 1166.86047
## 1761 5588.37209 1166.86047
## 1762 5588.37209 1166.86047
## 1763 5588.37209 1166.86047
## 1764 5588.37209 1166.86047
## 1765 5588.37209 1166.86047
## 1766 5588.37209 1166.86047
## 1767 5588.37209 1166.86047
## 1768 5588.37209 1166.86047
## 1769 5588.37209 1166.86047
## 1770 5588.37209 1166.86047
## 1771 5588.37209 1166.86047
## 1772 5588.37209 1166.86047
## 1773 5588.37209 1166.86047
## 1774 5588.37209 1166.86047
## 1775 5588.37209 1166.86047
## 1776 5588.37209 1166.86047
## 1777 4063.95349 1773.83721
## 1778 4063.95349 1773.83721
## 1779 4063.95349 1773.83721
## 1780 4063.95349 1773.83721
## 1781 4063.95349 1773.83721
## 1782 4063.95349 1773.83721
## 1783 4063.95349 1773.83721
## 1784 4063.95349 1773.83721
## 1785 4063.95349 1773.83721
## 1786 4063.95349 1773.83721
## 1787 4063.95349 1773.83721
## 1788 4063.95349 1773.83721
## 1789 4063.95349 1773.83721
## 1790 4063.95349 1773.83721
## 1791 4063.95349 1773.83721
## 1792 4063.95349 1773.83721
## 1793 4063.95349 1773.83721
## 1794 4063.95349 1773.83721
## 1795 4063.95349 1773.83721
## 1796 4063.95349 1773.83721
## 1797 4063.95349 1773.83721
## 1798 4063.95349 1773.83721
## 1799 4063.95349 1773.83721
## 1800 4063.95349 1773.83721
## 1801 2945.93023 0.00000
## 1802 2945.93023 0.00000
## 1803 2945.93023 0.00000
## 1804 2945.93023 0.00000
## 1805 2945.93023 0.00000
## 1806 2945.93023 0.00000
## 1807 2945.93023 0.00000
## 1808 2945.93023 0.00000
## 1809 2945.93023 0.00000
## 1810 2945.93023 0.00000
## 1811 2945.93023 0.00000
## 1812 2945.93023 0.00000
## 1813 2945.93023 0.00000
## 1814 2945.93023 0.00000
## 1815 2945.93023 0.00000
## 1816 2945.93023 0.00000
## 1817 2945.93023 0.00000
## 1818 2945.93023 0.00000
## 1819 2945.93023 0.00000
## 1820 2945.93023 0.00000
## 1821 2945.93023 0.00000
## 1822 2945.93023 0.00000
## 1823 2945.93023 0.00000
## 1824 2945.93023 0.00000
## 1825 613.95349 0.00000
## 1826 613.95349 0.00000
## 1827 613.95349 0.00000
## 1828 613.95349 0.00000
## 1829 613.95349 0.00000
## 1830 613.95349 0.00000
## 1831 613.95349 0.00000
## 1832 613.95349 0.00000
## 1833 613.95349 0.00000
## 1834 613.95349 0.00000
## 1835 613.95349 0.00000
## 1836 613.95349 0.00000
## 1837 613.95349 0.00000
## 1838 613.95349 0.00000
## 1839 613.95349 0.00000
## 1840 613.95349 0.00000
## 1841 613.95349 0.00000
## 1842 613.95349 0.00000
## 1843 613.95349 0.00000
## 1844 613.95349 0.00000
## 1845 613.95349 0.00000
## 1846 613.95349 0.00000
## 1847 613.95349 0.00000
## 1848 613.95349 0.00000
## 1849 286.04651 0.00000
## 1850 286.04651 0.00000
## 1851 286.04651 0.00000
## 1852 286.04651 0.00000
## 1853 286.04651 0.00000
## 1854 286.04651 0.00000
## 1855 286.04651 0.00000
## 1856 286.04651 0.00000
## 1857 286.04651 0.00000
## 1858 286.04651 0.00000
## 1859 286.04651 0.00000
## 1860 286.04651 0.00000
## 1861 286.04651 0.00000
## 1862 286.04651 0.00000
## 1863 286.04651 0.00000
## 1864 286.04651 0.00000
## 1865 286.04651 0.00000
## 1866 286.04651 0.00000
## 1867 286.04651 0.00000
## 1868 286.04651 0.00000
## 1869 286.04651 0.00000
## 1870 286.04651 0.00000
## 1871 286.04651 0.00000
## 1872 286.04651 0.00000
## 1873 0.00000 1609.01163
## 1874 0.00000 1609.01163
## 1875 0.00000 1609.01163
## 1876 0.00000 1609.01163
## 1877 0.00000 1609.01163
## 1878 0.00000 1609.01163
## 1879 0.00000 1609.01163
## 1880 0.00000 1609.01163
## 1881 0.00000 1609.01163
## 1882 0.00000 1609.01163
## 1883 0.00000 1609.01163
## 1884 0.00000 1609.01163
## 1885 0.00000 1609.01163
## 1886 0.00000 1609.01163
## 1887 0.00000 1609.01163
## 1888 0.00000 1609.01163
## 1889 0.00000 1609.01163
## 1890 0.00000 1609.01163
## 1891 0.00000 1609.01163
## 1892 0.00000 1609.01163
## 1893 0.00000 1609.01163
## 1894 0.00000 1609.01163
## 1895 0.00000 1609.01163
## 1896 0.00000 1609.01163
## 1897 0.00000 837.20930
## 1898 0.00000 837.20930
## 1899 0.00000 837.20930
## 1900 0.00000 837.20930
## 1901 0.00000 837.20930
## 1902 0.00000 837.20930
## 1903 0.00000 837.20930
## 1904 0.00000 837.20930
## 1905 0.00000 837.20930
## 1906 0.00000 837.20930
## 1907 0.00000 837.20930
## 1908 0.00000 837.20930
## 1909 0.00000 837.20930
## 1910 0.00000 837.20930
## 1911 0.00000 837.20930
## 1912 0.00000 837.20930
## 1913 0.00000 837.20930
## 1914 0.00000 837.20930
## 1915 0.00000 837.20930
## 1916 0.00000 837.20930
## 1917 0.00000 837.20930
## 1918 0.00000 837.20930
## 1919 0.00000 837.20930
## 1920 0.00000 837.20930
## 1921 4812.20930 7834.88372
## 1922 4812.20930 7834.88372
## 1923 4812.20930 7834.88372
## 1924 4812.20930 7834.88372
## 1925 4812.20930 7834.88372
## 1926 4812.20930 7834.88372
## 1927 4812.20930 7834.88372
## 1928 4812.20930 7834.88372
## 1929 4812.20930 7834.88372
## 1930 4812.20930 7834.88372
## 1931 4812.20930 7834.88372
## 1932 4812.20930 7834.88372
## 1933 4812.20930 7834.88372
## 1934 4812.20930 7834.88372
## 1935 4812.20930 7834.88372
## 1936 4812.20930 7834.88372
## 1937 4812.20930 7834.88372
## 1938 4812.20930 7834.88372
## 1939 4812.20930 7834.88372
## 1940 4812.20930 7834.88372
## 1941 4812.20930 7834.88372
## 1942 4812.20930 7834.88372
## 1943 4812.20930 7834.88372
## 1944 4812.20930 7834.88372
## 1945 19557.55814 2180.23256
## 1946 19557.55814 2180.23256
## 1947 19557.55814 2180.23256
## 1948 19557.55814 2180.23256
## 1949 19557.55814 2180.23256
## 1950 19557.55814 2180.23256
## 1951 19557.55814 2180.23256
## 1952 19557.55814 2180.23256
## 1953 19557.55814 2180.23256
## 1954 19557.55814 2180.23256
## 1955 19557.55814 2180.23256
## 1956 19557.55814 2180.23256
## 1957 19557.55814 2180.23256
## 1958 19557.55814 2180.23256
## 1959 19557.55814 2180.23256
## 1960 19557.55814 2180.23256
## 1961 19557.55814 2180.23256
## 1962 19557.55814 2180.23256
## 1963 19557.55814 2180.23256
## 1964 19557.55814 2180.23256
## 1965 19557.55814 2180.23256
## 1966 19557.55814 2180.23256
## 1967 19557.55814 2180.23256
## 1968 19557.55814 2180.23256
## 1969 16130.23256 0.00000
## 1970 16130.23256 0.00000
## 1971 16130.23256 0.00000
## 1972 16130.23256 0.00000
## 1973 16130.23256 0.00000
## 1974 16130.23256 0.00000
## 1975 16130.23256 0.00000
## 1976 16130.23256 0.00000
## 1977 16130.23256 0.00000
## 1978 16130.23256 0.00000
## 1979 16130.23256 0.00000
## 1980 16130.23256 0.00000
## 1981 16130.23256 0.00000
## 1982 16130.23256 0.00000
## 1983 16130.23256 0.00000
## 1984 16130.23256 0.00000
## 1985 16130.23256 0.00000
## 1986 16130.23256 0.00000
## 1987 16130.23256 0.00000
## 1988 16130.23256 0.00000
## 1989 16130.23256 0.00000
## 1990 16130.23256 0.00000
## 1991 16130.23256 0.00000
## 1992 16130.23256 0.00000
## 1993 6549.41860 0.00000
## 1994 6549.41860 0.00000
## 1995 6549.41860 0.00000
## 1996 6549.41860 0.00000
## 1997 6549.41860 0.00000
## 1998 6549.41860 0.00000
## 1999 6549.41860 0.00000
## 2000 6549.41860 0.00000
## 2001 6549.41860 0.00000
## 2002 6549.41860 0.00000
## 2003 6549.41860 0.00000
## 2004 6549.41860 0.00000
## 2005 6549.41860 0.00000
## 2006 6549.41860 0.00000
## 2007 6549.41860 0.00000
## 2008 6549.41860 0.00000
## 2009 6549.41860 0.00000
## 2010 6549.41860 0.00000
## 2011 6549.41860 0.00000
## 2012 6549.41860 0.00000
## 2013 6549.41860 0.00000
## 2014 6549.41860 0.00000
## 2015 6549.41860 0.00000
## 2016 6549.41860 0.00000
## 2017 3514.53488 650.58140
## 2018 3514.53488 650.58140
## 2019 3514.53488 650.58140
## 2020 3514.53488 650.58140
## 2021 3514.53488 650.58140
## 2022 3514.53488 650.58140
## 2023 3514.53488 650.58140
## 2024 3514.53488 650.58140
## 2025 3514.53488 650.58140
## 2026 3514.53488 650.58140
## 2027 3514.53488 650.58140
## 2028 3514.53488 650.58140
## 2029 3514.53488 650.58140
## 2030 3514.53488 650.58140
## 2031 3514.53488 650.58140
## 2032 3514.53488 650.58140
## 2033 3514.53488 650.58140
## 2034 3514.53488 650.58140
## 2035 3514.53488 650.58140
## 2036 3514.53488 650.58140
## 2037 3514.53488 650.58140
## 2038 3514.53488 650.58140
## 2039 3514.53488 650.58140
## 2040 3514.53488 650.58140
## 2041 94.18605 0.00000
## 2042 94.18605 0.00000
## 2043 94.18605 0.00000
## 2044 94.18605 0.00000
## 2045 94.18605 0.00000
## 2046 94.18605 0.00000
## 2047 94.18605 0.00000
## 2048 94.18605 0.00000
## 2049 94.18605 0.00000
## 2050 94.18605 0.00000
## 2051 94.18605 0.00000
## 2052 94.18605 0.00000
## 2053 94.18605 0.00000
## 2054 94.18605 0.00000
## 2055 94.18605 0.00000
## 2056 94.18605 0.00000
## 2057 94.18605 0.00000
## 2058 94.18605 0.00000
## 2059 94.18605 0.00000
## 2060 94.18605 0.00000
## 2061 94.18605 0.00000
## 2062 94.18605 0.00000
## 2063 94.18605 0.00000
## 2064 94.18605 0.00000
## 2065 418.60465 0.00000
## 2066 418.60465 0.00000
## 2067 418.60465 0.00000
## 2068 418.60465 0.00000
## 2069 418.60465 0.00000
## 2070 418.60465 0.00000
## 2071 418.60465 0.00000
## 2072 418.60465 0.00000
## 2073 418.60465 0.00000
## 2074 418.60465 0.00000
## 2075 418.60465 0.00000
## 2076 418.60465 0.00000
## 2077 418.60465 0.00000
## 2078 418.60465 0.00000
## 2079 418.60465 0.00000
## 2080 418.60465 0.00000
## 2081 418.60465 0.00000
## 2082 418.60465 0.00000
## 2083 418.60465 0.00000
## 2084 418.60465 0.00000
## 2085 418.60465 0.00000
## 2086 418.60465 0.00000
## 2087 418.60465 0.00000
## 2088 418.60465 0.00000
## 2089 109.01163 1090.11628
## 2090 109.01163 1090.11628
## 2091 109.01163 1090.11628
## 2092 109.01163 1090.11628
## 2093 109.01163 1090.11628
## 2094 109.01163 1090.11628
## 2095 109.01163 1090.11628
## 2096 109.01163 1090.11628
## 2097 109.01163 1090.11628
## 2098 109.01163 1090.11628
## 2099 109.01163 1090.11628
## 2100 109.01163 1090.11628
## 2101 109.01163 1090.11628
## 2102 109.01163 1090.11628
## 2103 109.01163 1090.11628
## 2104 109.01163 1090.11628
## 2105 109.01163 1090.11628
## 2106 109.01163 1090.11628
## 2107 109.01163 1090.11628
## 2108 109.01163 1090.11628
## 2109 109.01163 1090.11628
## 2110 109.01163 1090.11628
## 2111 109.01163 1090.11628
## 2112 109.01163 1090.11628
## 2113 4812.20930 7834.88372
## 2114 4812.20930 7834.88372
## 2115 4812.20930 7834.88372
## 2116 4812.20930 7834.88372
## 2117 4812.20930 7834.88372
## 2118 4812.20930 7834.88372
## 2119 4812.20930 7834.88372
## 2120 4812.20930 7834.88372
## 2121 4812.20930 7834.88372
## 2122 4812.20930 7834.88372
## 2123 4812.20930 7834.88372
## 2124 4812.20930 7834.88372
## 2125 4812.20930 7834.88372
## 2126 4812.20930 7834.88372
## 2127 4812.20930 7834.88372
## 2128 4812.20930 7834.88372
## 2129 4812.20930 7834.88372
## 2130 4812.20930 7834.88372
## 2131 4812.20930 7834.88372
## 2132 4812.20930 7834.88372
## 2133 4812.20930 7834.88372
## 2134 4812.20930 7834.88372
## 2135 4812.20930 7834.88372
## 2136 4812.20930 7834.88372
## 2137 11656.39535 1063.95349
## 2138 11656.39535 1063.95349
## 2139 11656.39535 1063.95349
## 2140 11656.39535 1063.95349
## 2141 11656.39535 1063.95349
## 2142 11656.39535 1063.95349
## 2143 11656.39535 1063.95349
## 2144 11656.39535 1063.95349
## 2145 11656.39535 1063.95349
## 2146 11656.39535 1063.95349
## 2147 11656.39535 1063.95349
## 2148 11656.39535 1063.95349
## 2149 11656.39535 1063.95349
## 2150 11656.39535 1063.95349
## 2151 11656.39535 1063.95349
## 2152 11656.39535 1063.95349
## 2153 11656.39535 1063.95349
## 2154 11656.39535 1063.95349
## 2155 11656.39535 1063.95349
## 2156 11656.39535 1063.95349
## 2157 11656.39535 1063.95349
## 2158 11656.39535 1063.95349
## 2159 11656.39535 1063.95349
## 2160 11656.39535 1063.95349
## 2161 4932.55814 0.00000
## 2162 4932.55814 0.00000
## 2163 4932.55814 0.00000
## 2164 4932.55814 0.00000
## 2165 4932.55814 0.00000
## 2166 4932.55814 0.00000
## 2167 4932.55814 0.00000
## 2168 4932.55814 0.00000
## 2169 4932.55814 0.00000
## 2170 4932.55814 0.00000
## 2171 4932.55814 0.00000
## 2172 4932.55814 0.00000
## 2173 4932.55814 0.00000
## 2174 4932.55814 0.00000
## 2175 4932.55814 0.00000
## 2176 4932.55814 0.00000
## 2177 4932.55814 0.00000
## 2178 4932.55814 0.00000
## 2179 4932.55814 0.00000
## 2180 4932.55814 0.00000
## 2181 4932.55814 0.00000
## 2182 4932.55814 0.00000
## 2183 4932.55814 0.00000
## 2184 4932.55814 0.00000
## 2185 3261.62791 1438.95349
## 2186 3261.62791 1438.95349
## 2187 3261.62791 1438.95349
## 2188 3261.62791 1438.95349
## 2189 3261.62791 1438.95349
## 2190 3261.62791 1438.95349
## 2191 3261.62791 1438.95349
## 2192 3261.62791 1438.95349
## 2193 3261.62791 1438.95349
## 2194 3261.62791 1438.95349
## 2195 3261.62791 1438.95349
## 2196 3261.62791 1438.95349
## 2197 3261.62791 1438.95349
## 2198 3261.62791 1438.95349
## 2199 3261.62791 1438.95349
## 2200 3261.62791 1438.95349
## 2201 3261.62791 1438.95349
## 2202 3261.62791 1438.95349
## 2203 3261.62791 1438.95349
## 2204 3261.62791 1438.95349
## 2205 3261.62791 1438.95349
## 2206 3261.62791 1438.95349
## 2207 3261.62791 1438.95349
## 2208 3261.62791 1438.95349
## 2209 0.00000 650.58140
## 2210 0.00000 650.58140
## 2211 0.00000 650.58140
## 2212 0.00000 650.58140
## 2213 0.00000 650.58140
## 2214 0.00000 650.58140
## 2215 0.00000 650.58140
## 2216 0.00000 650.58140
## 2217 0.00000 650.58140
## 2218 0.00000 650.58140
## 2219 0.00000 650.58140
## 2220 0.00000 650.58140
## 2221 0.00000 650.58140
## 2222 0.00000 650.58140
## 2223 0.00000 650.58140
## 2224 0.00000 650.58140
## 2225 0.00000 650.58140
## 2226 0.00000 650.58140
## 2227 0.00000 650.58140
## 2228 0.00000 650.58140
## 2229 0.00000 650.58140
## 2230 0.00000 650.58140
## 2231 0.00000 650.58140
## 2232 0.00000 650.58140
## 2233 931.39535 0.00000
## 2234 931.39535 0.00000
## 2235 931.39535 0.00000
## 2236 931.39535 0.00000
## 2237 931.39535 0.00000
## 2238 931.39535 0.00000
## 2239 931.39535 0.00000
## 2240 931.39535 0.00000
## 2241 931.39535 0.00000
## 2242 931.39535 0.00000
## 2243 931.39535 0.00000
## 2244 931.39535 0.00000
## 2245 931.39535 0.00000
## 2246 931.39535 0.00000
## 2247 931.39535 0.00000
## 2248 931.39535 0.00000
## 2249 931.39535 0.00000
## 2250 931.39535 0.00000
## 2251 931.39535 0.00000
## 2252 931.39535 0.00000
## 2253 931.39535 0.00000
## 2254 931.39535 0.00000
## 2255 931.39535 0.00000
## 2256 931.39535 0.00000
## 2257 0.00000 1312.50000
## 2258 0.00000 1312.50000
## 2259 0.00000 1312.50000
## 2260 0.00000 1312.50000
## 2261 0.00000 1312.50000
## 2262 0.00000 1312.50000
## 2263 0.00000 1312.50000
## 2264 0.00000 1312.50000
## 2265 0.00000 1312.50000
## 2266 0.00000 1312.50000
## 2267 0.00000 1312.50000
## 2268 0.00000 1312.50000
## 2269 0.00000 1312.50000
## 2270 0.00000 1312.50000
## 2271 0.00000 1312.50000
## 2272 0.00000 1312.50000
## 2273 0.00000 1312.50000
## 2274 0.00000 1312.50000
## 2275 0.00000 1312.50000
## 2276 0.00000 1312.50000
## 2277 0.00000 1312.50000
## 2278 0.00000 1312.50000
## 2279 0.00000 1312.50000
## 2280 0.00000 1312.50000
## 2281 109.01163 1962.20930
## 2282 109.01163 1962.20930
## 2283 109.01163 1962.20930
## 2284 109.01163 1962.20930
## 2285 109.01163 1962.20930
## 2286 109.01163 1962.20930
## 2287 109.01163 1962.20930
## 2288 109.01163 1962.20930
## 2289 109.01163 1962.20930
## 2290 109.01163 1962.20930
## 2291 109.01163 1962.20930
## 2292 109.01163 1962.20930
## 2293 109.01163 1962.20930
## 2294 109.01163 1962.20930
## 2295 109.01163 1962.20930
## 2296 109.01163 1962.20930
## 2297 109.01163 1962.20930
## 2298 109.01163 1962.20930
## 2299 109.01163 1962.20930
## 2300 109.01163 1962.20930
## 2301 109.01163 1962.20930
## 2302 109.01163 1962.20930
## 2303 109.01163 1962.20930
## 2304 109.01163 1962.20930
## 2305 4812.20930 7834.88372
## 2306 4812.20930 7834.88372
## 2307 4812.20930 7834.88372
## 2308 4812.20930 7834.88372
## 2309 4812.20930 7834.88372
## 2310 4812.20930 7834.88372
## 2311 4812.20930 7834.88372
## 2312 4812.20930 7834.88372
## 2313 4812.20930 7834.88372
## 2314 4812.20930 7834.88372
## 2315 4812.20930 7834.88372
## 2316 4812.20930 7834.88372
## 2317 4812.20930 7834.88372
## 2318 4812.20930 7834.88372
## 2319 4812.20930 7834.88372
## 2320 4812.20930 7834.88372
## 2321 4812.20930 7834.88372
## 2322 4812.20930 7834.88372
## 2323 4812.20930 7834.88372
## 2324 4812.20930 7834.88372
## 2325 4812.20930 7834.88372
## 2326 4812.20930 7834.88372
## 2327 4812.20930 7834.88372
## 2328 4812.20930 7834.88372
## 2329 16487.79070 1386.62791
## 2330 16487.79070 1386.62791
## 2331 16487.79070 1386.62791
## 2332 16487.79070 1386.62791
## 2333 16487.79070 1386.62791
## 2334 16487.79070 1386.62791
## 2335 16487.79070 1386.62791
## 2336 16487.79070 1386.62791
## 2337 16487.79070 1386.62791
## 2338 16487.79070 1386.62791
## 2339 16487.79070 1386.62791
## 2340 16487.79070 1386.62791
## 2341 16487.79070 1386.62791
## 2342 16487.79070 1386.62791
## 2343 16487.79070 1386.62791
## 2344 16487.79070 1386.62791
## 2345 16487.79070 1386.62791
## 2346 16487.79070 1386.62791
## 2347 16487.79070 1386.62791
## 2348 16487.79070 1386.62791
## 2349 16487.79070 1386.62791
## 2350 16487.79070 1386.62791
## 2351 16487.79070 1386.62791
## 2352 16487.79070 1386.62791
## 2353 5795.93023 0.00000
## 2354 5795.93023 0.00000
## 2355 5795.93023 0.00000
## 2356 5795.93023 0.00000
## 2357 5795.93023 0.00000
## 2358 5795.93023 0.00000
## 2359 5795.93023 0.00000
## 2360 5795.93023 0.00000
## 2361 5795.93023 0.00000
## 2362 5795.93023 0.00000
## 2363 5795.93023 0.00000
## 2364 5795.93023 0.00000
## 2365 5795.93023 0.00000
## 2366 5795.93023 0.00000
## 2367 5795.93023 0.00000
## 2368 5795.93023 0.00000
## 2369 5795.93023 0.00000
## 2370 5795.93023 0.00000
## 2371 5795.93023 0.00000
## 2372 5795.93023 0.00000
## 2373 5795.93023 0.00000
## 2374 5795.93023 0.00000
## 2375 5795.93023 0.00000
## 2376 5795.93023 0.00000
## 2377 3636.62791 837.20930
## 2378 3636.62791 837.20930
## 2379 3636.62791 837.20930
## 2380 3636.62791 837.20930
## 2381 3636.62791 837.20930
## 2382 3636.62791 837.20930
## 2383 3636.62791 837.20930
## 2384 3636.62791 837.20930
## 2385 3636.62791 837.20930
## 2386 3636.62791 837.20930
## 2387 3636.62791 837.20930
## 2388 3636.62791 837.20930
## 2389 3636.62791 837.20930
## 2390 3636.62791 837.20930
## 2391 3636.62791 837.20930
## 2392 3636.62791 837.20930
## 2393 3636.62791 837.20930
## 2394 3636.62791 837.20930
## 2395 3636.62791 837.20930
## 2396 3636.62791 837.20930
## 2397 3636.62791 837.20930
## 2398 3636.62791 837.20930
## 2399 3636.62791 837.20930
## 2400 3636.62791 837.20930
## 2401 0.00000 650.58140
## 2402 0.00000 650.58140
## 2403 0.00000 650.58140
## 2404 0.00000 650.58140
## 2405 0.00000 650.58140
## 2406 0.00000 650.58140
## 2407 0.00000 650.58140
## 2408 0.00000 650.58140
## 2409 0.00000 650.58140
## 2410 0.00000 650.58140
## 2411 0.00000 650.58140
## 2412 0.00000 650.58140
## 2413 0.00000 650.58140
## 2414 0.00000 650.58140
## 2415 0.00000 650.58140
## 2416 0.00000 650.58140
## 2417 0.00000 650.58140
## 2418 0.00000 650.58140
## 2419 0.00000 650.58140
## 2420 0.00000 650.58140
## 2421 0.00000 650.58140
## 2422 0.00000 650.58140
## 2423 0.00000 650.58140
## 2424 0.00000 650.58140
## 2425 94.18605 0.00000
## 2426 94.18605 0.00000
## 2427 94.18605 0.00000
## 2428 94.18605 0.00000
## 2429 94.18605 0.00000
## 2430 94.18605 0.00000
## 2431 94.18605 0.00000
## 2432 94.18605 0.00000
## 2433 94.18605 0.00000
## 2434 94.18605 0.00000
## 2435 94.18605 0.00000
## 2436 94.18605 0.00000
## 2437 94.18605 0.00000
## 2438 94.18605 0.00000
## 2439 94.18605 0.00000
## 2440 94.18605 0.00000
## 2441 94.18605 0.00000
## 2442 94.18605 0.00000
## 2443 94.18605 0.00000
## 2444 94.18605 0.00000
## 2445 94.18605 0.00000
## 2446 94.18605 0.00000
## 2447 94.18605 0.00000
## 2448 94.18605 0.00000
## 2449 327.03488 859.01163
## 2450 327.03488 859.01163
## 2451 327.03488 859.01163
## 2452 327.03488 859.01163
## 2453 327.03488 859.01163
## 2454 327.03488 859.01163
## 2455 327.03488 859.01163
## 2456 327.03488 859.01163
## 2457 327.03488 859.01163
## 2458 327.03488 859.01163
## 2459 327.03488 859.01163
## 2460 327.03488 859.01163
## 2461 327.03488 859.01163
## 2462 327.03488 859.01163
## 2463 327.03488 859.01163
## 2464 327.03488 859.01163
## 2465 327.03488 859.01163
## 2466 327.03488 859.01163
## 2467 327.03488 859.01163
## 2468 327.03488 859.01163
## 2469 327.03488 859.01163
## 2470 327.03488 859.01163
## 2471 327.03488 859.01163
## 2472 327.03488 859.01163
## 2473 109.01163 1090.11628
## 2474 109.01163 1090.11628
## 2475 109.01163 1090.11628
## 2476 109.01163 1090.11628
## 2477 109.01163 1090.11628
## 2478 109.01163 1090.11628
## 2479 109.01163 1090.11628
## 2480 109.01163 1090.11628
## 2481 109.01163 1090.11628
## 2482 109.01163 1090.11628
## 2483 109.01163 1090.11628
## 2484 109.01163 1090.11628
## 2485 109.01163 1090.11628
## 2486 109.01163 1090.11628
## 2487 109.01163 1090.11628
## 2488 109.01163 1090.11628
## 2489 109.01163 1090.11628
## 2490 109.01163 1090.11628
## 2491 109.01163 1090.11628
## 2492 109.01163 1090.11628
## 2493 109.01163 1090.11628
## 2494 109.01163 1090.11628
## 2495 109.01163 1090.11628
## 2496 109.01163 1090.11628
## 2497 4812.20930 7834.88372
## 2498 4812.20930 7834.88372
## 2499 4812.20930 7834.88372
## 2500 4812.20930 7834.88372
## 2501 4812.20930 7834.88372
## 2502 4812.20930 7834.88372
## 2503 4812.20930 7834.88372
## 2504 4812.20930 7834.88372
## 2505 4812.20930 7834.88372
## 2506 4812.20930 7834.88372
## 2507 4812.20930 7834.88372
## 2508 4812.20930 7834.88372
## 2509 4812.20930 7834.88372
## 2510 4812.20930 7834.88372
## 2511 4812.20930 7834.88372
## 2512 4812.20930 7834.88372
## 2513 4812.20930 7834.88372
## 2514 4812.20930 7834.88372
## 2515 4812.20930 7834.88372
## 2516 4812.20930 7834.88372
## 2517 4812.20930 7834.88372
## 2518 4812.20930 7834.88372
## 2519 4812.20930 7834.88372
## 2520 4812.20930 7834.88372
## 2521 10819.18605 0.00000
## 2522 10819.18605 0.00000
## 2523 10819.18605 0.00000
## 2524 10819.18605 0.00000
## 2525 10819.18605 0.00000
## 2526 10819.18605 0.00000
## 2527 10819.18605 0.00000
## 2528 10819.18605 0.00000
## 2529 10819.18605 0.00000
## 2530 10819.18605 0.00000
## 2531 10819.18605 0.00000
## 2532 10819.18605 0.00000
## 2533 10819.18605 0.00000
## 2534 10819.18605 0.00000
## 2535 10819.18605 0.00000
## 2536 10819.18605 0.00000
## 2537 10819.18605 0.00000
## 2538 10819.18605 0.00000
## 2539 10819.18605 0.00000
## 2540 10819.18605 0.00000
## 2541 10819.18605 0.00000
## 2542 10819.18605 0.00000
## 2543 10819.18605 0.00000
## 2544 10819.18605 0.00000
## 2545 1845.34884 0.00000
## 2546 1845.34884 0.00000
## 2547 1845.34884 0.00000
## 2548 1845.34884 0.00000
## 2549 1845.34884 0.00000
## 2550 1845.34884 0.00000
## 2551 1845.34884 0.00000
## 2552 1845.34884 0.00000
## 2553 1845.34884 0.00000
## 2554 1845.34884 0.00000
## 2555 1845.34884 0.00000
## 2556 1845.34884 0.00000
## 2557 1845.34884 0.00000
## 2558 1845.34884 0.00000
## 2559 1845.34884 0.00000
## 2560 1845.34884 0.00000
## 2561 1845.34884 0.00000
## 2562 1845.34884 0.00000
## 2563 1845.34884 0.00000
## 2564 1845.34884 0.00000
## 2565 1845.34884 0.00000
## 2566 1845.34884 0.00000
## 2567 1845.34884 0.00000
## 2568 1845.34884 0.00000
## 2569 1090.11628 0.00000
## 2570 1090.11628 0.00000
## 2571 1090.11628 0.00000
## 2572 1090.11628 0.00000
## 2573 1090.11628 0.00000
## 2574 1090.11628 0.00000
## 2575 1090.11628 0.00000
## 2576 1090.11628 0.00000
## 2577 1090.11628 0.00000
## 2578 1090.11628 0.00000
## 2579 1090.11628 0.00000
## 2580 1090.11628 0.00000
## 2581 1090.11628 0.00000
## 2582 1090.11628 0.00000
## 2583 1090.11628 0.00000
## 2584 1090.11628 0.00000
## 2585 1090.11628 0.00000
## 2586 1090.11628 0.00000
## 2587 1090.11628 0.00000
## 2588 1090.11628 0.00000
## 2589 1090.11628 0.00000
## 2590 1090.11628 0.00000
## 2591 1090.11628 0.00000
## 2592 1090.11628 0.00000
## 2593 0.00000 938.37209
## 2594 0.00000 938.37209
## 2595 0.00000 938.37209
## 2596 0.00000 938.37209
## 2597 0.00000 938.37209
## 2598 0.00000 938.37209
## 2599 0.00000 938.37209
## 2600 0.00000 938.37209
## 2601 0.00000 938.37209
## 2602 0.00000 938.37209
## 2603 0.00000 938.37209
## 2604 0.00000 938.37209
## 2605 0.00000 938.37209
## 2606 0.00000 938.37209
## 2607 0.00000 938.37209
## 2608 0.00000 938.37209
## 2609 0.00000 938.37209
## 2610 0.00000 938.37209
## 2611 0.00000 938.37209
## 2612 0.00000 938.37209
## 2613 0.00000 938.37209
## 2614 0.00000 938.37209
## 2615 0.00000 938.37209
## 2616 0.00000 938.37209
## 2617 94.18605 1090.11628
## 2618 94.18605 1090.11628
## 2619 94.18605 1090.11628
## 2620 94.18605 1090.11628
## 2621 94.18605 1090.11628
## 2622 94.18605 1090.11628
## 2623 94.18605 1090.11628
## 2624 94.18605 1090.11628
## 2625 94.18605 1090.11628
## 2626 94.18605 1090.11628
## 2627 94.18605 1090.11628
## 2628 94.18605 1090.11628
## 2629 94.18605 1090.11628
## 2630 94.18605 1090.11628
## 2631 94.18605 1090.11628
## 2632 94.18605 1090.11628
## 2633 94.18605 1090.11628
## 2634 94.18605 1090.11628
## 2635 94.18605 1090.11628
## 2636 94.18605 1090.11628
## 2637 94.18605 1090.11628
## 2638 94.18605 1090.11628
## 2639 94.18605 1090.11628
## 2640 94.18605 1090.11628
## 2641 0.00000 505.81395
## 2642 0.00000 505.81395
## 2643 0.00000 505.81395
## 2644 0.00000 505.81395
## 2645 0.00000 505.81395
## 2646 0.00000 505.81395
## 2647 0.00000 505.81395
## 2648 0.00000 505.81395
## 2649 0.00000 505.81395
## 2650 0.00000 505.81395
## 2651 0.00000 505.81395
## 2652 0.00000 505.81395
## 2653 0.00000 505.81395
## 2654 0.00000 505.81395
## 2655 0.00000 505.81395
## 2656 0.00000 505.81395
## 2657 0.00000 505.81395
## 2658 0.00000 505.81395
## 2659 0.00000 505.81395
## 2660 0.00000 505.81395
## 2661 0.00000 505.81395
## 2662 0.00000 505.81395
## 2663 0.00000 505.81395
## 2664 0.00000 505.81395
## 2665 109.01163 0.00000
## 2666 109.01163 0.00000
## 2667 109.01163 0.00000
## 2668 109.01163 0.00000
## 2669 109.01163 0.00000
## 2670 109.01163 0.00000
## 2671 109.01163 0.00000
## 2672 109.01163 0.00000
## 2673 109.01163 0.00000
## 2674 109.01163 0.00000
## 2675 109.01163 0.00000
## 2676 109.01163 0.00000
## 2677 109.01163 0.00000
## 2678 109.01163 0.00000
## 2679 109.01163 0.00000
## 2680 109.01163 0.00000
## 2681 109.01163 0.00000
## 2682 109.01163 0.00000
## 2683 109.01163 0.00000
## 2684 109.01163 0.00000
## 2685 109.01163 0.00000
## 2686 109.01163 0.00000
## 2687 109.01163 0.00000
## 2688 109.01163 0.00000
## 2689 4812.20930 7834.88372
## 2690 4812.20930 7834.88372
## 2691 4812.20930 7834.88372
## 2692 4812.20930 7834.88372
## 2693 4812.20930 7834.88372
## 2694 4812.20930 7834.88372
## 2695 4812.20930 7834.88372
## 2696 4812.20930 7834.88372
## 2697 4812.20930 7834.88372
## 2698 4812.20930 7834.88372
## 2699 4812.20930 7834.88372
## 2700 4812.20930 7834.88372
## 2701 4812.20930 7834.88372
## 2702 4812.20930 7834.88372
## 2703 4812.20930 7834.88372
## 2704 4812.20930 7834.88372
## 2705 4812.20930 7834.88372
## 2706 4812.20930 7834.88372
## 2707 4812.20930 7834.88372
## 2708 4812.20930 7834.88372
## 2709 4812.20930 7834.88372
## 2710 4812.20930 7834.88372
## 2711 4812.20930 7834.88372
## 2712 4812.20930 7834.88372
## 2713 5839.53488 1090.11628
## 2714 5839.53488 1090.11628
## 2715 5839.53488 1090.11628
## 2716 5839.53488 1090.11628
## 2717 5839.53488 1090.11628
## 2718 5839.53488 1090.11628
## 2719 5839.53488 1090.11628
## 2720 5839.53488 1090.11628
## 2721 5839.53488 1090.11628
## 2722 5839.53488 1090.11628
## 2723 5839.53488 1090.11628
## 2724 5839.53488 1090.11628
## 2725 5839.53488 1090.11628
## 2726 5839.53488 1090.11628
## 2727 5839.53488 1090.11628
## 2728 5839.53488 1090.11628
## 2729 5839.53488 1090.11628
## 2730 5839.53488 1090.11628
## 2731 5839.53488 1090.11628
## 2732 5839.53488 1090.11628
## 2733 5839.53488 1090.11628
## 2734 5839.53488 1090.11628
## 2735 5839.53488 1090.11628
## 2736 5839.53488 1090.11628
## 2737 3973.25581 0.00000
## 2738 3973.25581 0.00000
## 2739 3973.25581 0.00000
## 2740 3973.25581 0.00000
## 2741 3973.25581 0.00000
## 2742 3973.25581 0.00000
## 2743 3973.25581 0.00000
## 2744 3973.25581 0.00000
## 2745 3973.25581 0.00000
## 2746 3973.25581 0.00000
## 2747 3973.25581 0.00000
## 2748 3973.25581 0.00000
## 2749 3973.25581 0.00000
## 2750 3973.25581 0.00000
## 2751 3973.25581 0.00000
## 2752 3973.25581 0.00000
## 2753 3973.25581 0.00000
## 2754 3973.25581 0.00000
## 2755 3973.25581 0.00000
## 2756 3973.25581 0.00000
## 2757 3973.25581 0.00000
## 2758 3973.25581 0.00000
## 2759 3973.25581 0.00000
## 2760 3973.25581 0.00000
## 2761 1779.06977 0.00000
## 2762 1779.06977 0.00000
## 2763 1779.06977 0.00000
## 2764 1779.06977 0.00000
## 2765 1779.06977 0.00000
## 2766 1779.06977 0.00000
## 2767 1779.06977 0.00000
## 2768 1779.06977 0.00000
## 2769 1779.06977 0.00000
## 2770 1779.06977 0.00000
## 2771 1779.06977 0.00000
## 2772 1779.06977 0.00000
## 2773 1779.06977 0.00000
## 2774 1779.06977 0.00000
## 2775 1779.06977 0.00000
## 2776 1779.06977 0.00000
## 2777 1779.06977 0.00000
## 2778 1779.06977 0.00000
## 2779 1779.06977 0.00000
## 2780 1779.06977 0.00000
## 2781 1779.06977 0.00000
## 2782 1779.06977 0.00000
## 2783 1779.06977 0.00000
## 2784 1779.06977 0.00000
## 2785 0.00000 650.58140
## 2786 0.00000 650.58140
## 2787 0.00000 650.58140
## 2788 0.00000 650.58140
## 2789 0.00000 650.58140
## 2790 0.00000 650.58140
## 2791 0.00000 650.58140
## 2792 0.00000 650.58140
## 2793 0.00000 650.58140
## 2794 0.00000 650.58140
## 2795 0.00000 650.58140
## 2796 0.00000 650.58140
## 2797 0.00000 650.58140
## 2798 0.00000 650.58140
## 2799 0.00000 650.58140
## 2800 0.00000 650.58140
## 2801 0.00000 650.58140
## 2802 0.00000 650.58140
## 2803 0.00000 650.58140
## 2804 0.00000 650.58140
## 2805 0.00000 650.58140
## 2806 0.00000 650.58140
## 2807 0.00000 650.58140
## 2808 0.00000 650.58140
## 2809 94.18605 0.00000
## 2810 94.18605 0.00000
## 2811 94.18605 0.00000
## 2812 94.18605 0.00000
## 2813 94.18605 0.00000
## 2814 94.18605 0.00000
## 2815 94.18605 0.00000
## 2816 94.18605 0.00000
## 2817 94.18605 0.00000
## 2818 94.18605 0.00000
## 2819 94.18605 0.00000
## 2820 94.18605 0.00000
## 2821 94.18605 0.00000
## 2822 94.18605 0.00000
## 2823 94.18605 0.00000
## 2824 94.18605 0.00000
## 2825 94.18605 0.00000
## 2826 94.18605 0.00000
## 2827 94.18605 0.00000
## 2828 94.18605 0.00000
## 2829 94.18605 0.00000
## 2830 94.18605 0.00000
## 2831 94.18605 0.00000
## 2832 94.18605 0.00000
## 2833 0.00000 1609.01163
## 2834 0.00000 1609.01163
## 2835 0.00000 1609.01163
## 2836 0.00000 1609.01163
## 2837 0.00000 1609.01163
## 2838 0.00000 1609.01163
## 2839 0.00000 1609.01163
## 2840 0.00000 1609.01163
## 2841 0.00000 1609.01163
## 2842 0.00000 1609.01163
## 2843 0.00000 1609.01163
## 2844 0.00000 1609.01163
## 2845 0.00000 1609.01163
## 2846 0.00000 1609.01163
## 2847 0.00000 1609.01163
## 2848 0.00000 1609.01163
## 2849 0.00000 1609.01163
## 2850 0.00000 1609.01163
## 2851 0.00000 1609.01163
## 2852 0.00000 1609.01163
## 2853 0.00000 1609.01163
## 2854 0.00000 1609.01163
## 2855 0.00000 1609.01163
## 2856 0.00000 1609.01163
## 2857 109.01163 837.20930
## 2858 109.01163 837.20930
## 2859 109.01163 837.20930
## 2860 109.01163 837.20930
## 2861 109.01163 837.20930
## 2862 109.01163 837.20930
## 2863 109.01163 837.20930
## 2864 109.01163 837.20930
## 2865 109.01163 837.20930
## 2866 109.01163 837.20930
## 2867 109.01163 837.20930
## 2868 109.01163 837.20930
## 2869 109.01163 837.20930
## 2870 109.01163 837.20930
## 2871 109.01163 837.20930
## 2872 109.01163 837.20930
## 2873 109.01163 837.20930
## 2874 109.01163 837.20930
## 2875 109.01163 837.20930
## 2876 109.01163 837.20930
## 2877 109.01163 837.20930
## 2878 109.01163 837.20930
## 2879 109.01163 837.20930
## 2880 109.01163 837.20930
## 2881 4812.20930 7834.88372
## 2882 4812.20930 7834.88372
## 2883 4812.20930 7834.88372
## 2884 4812.20930 7834.88372
## 2885 4812.20930 7834.88372
## 2886 4812.20930 7834.88372
## 2887 4812.20930 7834.88372
## 2888 4812.20930 7834.88372
## 2889 4812.20930 7834.88372
## 2890 4812.20930 7834.88372
## 2891 4812.20930 7834.88372
## 2892 4812.20930 7834.88372
## 2893 4812.20930 7834.88372
## 2894 4812.20930 7834.88372
## 2895 4812.20930 7834.88372
## 2896 4812.20930 7834.88372
## 2897 4812.20930 7834.88372
## 2898 4812.20930 7834.88372
## 2899 4812.20930 7834.88372
## 2900 4812.20930 7834.88372
## 2901 4812.20930 7834.88372
## 2902 4812.20930 7834.88372
## 2903 4812.20930 7834.88372
## 2904 4812.20930 7834.88372
## 2905 21390.69767 2398.25581
## 2906 21390.69767 2398.25581
## 2907 21390.69767 2398.25581
## 2908 21390.69767 2398.25581
## 2909 21390.69767 2398.25581
## 2910 21390.69767 2398.25581
## 2911 21390.69767 2398.25581
## 2912 21390.69767 2398.25581
## 2913 21390.69767 2398.25581
## 2914 21390.69767 2398.25581
## 2915 21390.69767 2398.25581
## 2916 21390.69767 2398.25581
## 2917 21390.69767 2398.25581
## 2918 21390.69767 2398.25581
## 2919 21390.69767 2398.25581
## 2920 21390.69767 2398.25581
## 2921 21390.69767 2398.25581
## 2922 21390.69767 2398.25581
## 2923 21390.69767 2398.25581
## 2924 21390.69767 2398.25581
## 2925 21390.69767 2398.25581
## 2926 21390.69767 2398.25581
## 2927 21390.69767 2398.25581
## 2928 21390.69767 2398.25581
## 2929 16950.00000 127.32558
## 2930 16950.00000 127.32558
## 2931 16950.00000 127.32558
## 2932 16950.00000 127.32558
## 2933 16950.00000 127.32558
## 2934 16950.00000 127.32558
## 2935 16950.00000 127.32558
## 2936 16950.00000 127.32558
## 2937 16950.00000 127.32558
## 2938 16950.00000 127.32558
## 2939 16950.00000 127.32558
## 2940 16950.00000 127.32558
## 2941 16950.00000 127.32558
## 2942 16950.00000 127.32558
## 2943 16950.00000 127.32558
## 2944 16950.00000 127.32558
## 2945 16950.00000 127.32558
## 2946 16950.00000 127.32558
## 2947 16950.00000 127.32558
## 2948 16950.00000 127.32558
## 2949 16950.00000 127.32558
## 2950 16950.00000 127.32558
## 2951 16950.00000 127.32558
## 2952 16950.00000 127.32558
## 2953 7334.30233 0.00000
## 2954 7334.30233 0.00000
## 2955 7334.30233 0.00000
## 2956 7334.30233 0.00000
## 2957 7334.30233 0.00000
## 2958 7334.30233 0.00000
## 2959 7334.30233 0.00000
## 2960 7334.30233 0.00000
## 2961 7334.30233 0.00000
## 2962 7334.30233 0.00000
## 2963 7334.30233 0.00000
## 2964 7334.30233 0.00000
## 2965 7334.30233 0.00000
## 2966 7334.30233 0.00000
## 2967 7334.30233 0.00000
## 2968 7334.30233 0.00000
## 2969 7334.30233 0.00000
## 2970 7334.30233 0.00000
## 2971 7334.30233 0.00000
## 2972 7334.30233 0.00000
## 2973 7334.30233 0.00000
## 2974 7334.30233 0.00000
## 2975 7334.30233 0.00000
## 2976 7334.30233 0.00000
## 2977 4083.13953 0.00000
## 2978 4083.13953 0.00000
## 2979 4083.13953 0.00000
## 2980 4083.13953 0.00000
## 2981 4083.13953 0.00000
## 2982 4083.13953 0.00000
## 2983 4083.13953 0.00000
## 2984 4083.13953 0.00000
## 2985 4083.13953 0.00000
## 2986 4083.13953 0.00000
## 2987 4083.13953 0.00000
## 2988 4083.13953 0.00000
## 2989 4083.13953 0.00000
## 2990 4083.13953 0.00000
## 2991 4083.13953 0.00000
## 2992 4083.13953 0.00000
## 2993 4083.13953 0.00000
## 2994 4083.13953 0.00000
## 2995 4083.13953 0.00000
## 2996 4083.13953 0.00000
## 2997 4083.13953 0.00000
## 2998 4083.13953 0.00000
## 2999 4083.13953 0.00000
## 3000 4083.13953 0.00000
## 3001 0.00000 0.00000
## 3002 0.00000 0.00000
## 3003 0.00000 0.00000
## 3004 0.00000 0.00000
## 3005 0.00000 0.00000
## 3006 0.00000 0.00000
## 3007 0.00000 0.00000
## 3008 0.00000 0.00000
## 3009 0.00000 0.00000
## 3010 0.00000 0.00000
## 3011 0.00000 0.00000
## 3012 0.00000 0.00000
## 3013 0.00000 0.00000
## 3014 0.00000 0.00000
## 3015 0.00000 0.00000
## 3016 0.00000 0.00000
## 3017 0.00000 0.00000
## 3018 0.00000 0.00000
## 3019 0.00000 0.00000
## 3020 0.00000 0.00000
## 3021 0.00000 0.00000
## 3022 0.00000 0.00000
## 3023 0.00000 0.00000
## 3024 0.00000 0.00000
## 3025 418.60465 0.00000
## 3026 418.60465 0.00000
## 3027 418.60465 0.00000
## 3028 418.60465 0.00000
## 3029 418.60465 0.00000
## 3030 418.60465 0.00000
## 3031 418.60465 0.00000
## 3032 418.60465 0.00000
## 3033 418.60465 0.00000
## 3034 418.60465 0.00000
## 3035 418.60465 0.00000
## 3036 418.60465 0.00000
## 3037 418.60465 0.00000
## 3038 418.60465 0.00000
## 3039 418.60465 0.00000
## 3040 418.60465 0.00000
## 3041 418.60465 0.00000
## 3042 418.60465 0.00000
## 3043 418.60465 0.00000
## 3044 418.60465 0.00000
## 3045 418.60465 0.00000
## 3046 418.60465 0.00000
## 3047 418.60465 0.00000
## 3048 418.60465 0.00000
## 3049 0.00000 1090.11628
## 3050 0.00000 1090.11628
## 3051 0.00000 1090.11628
## 3052 0.00000 1090.11628
## 3053 0.00000 1090.11628
## 3054 0.00000 1090.11628
## 3055 0.00000 1090.11628
## 3056 0.00000 1090.11628
## 3057 0.00000 1090.11628
## 3058 0.00000 1090.11628
## 3059 0.00000 1090.11628
## 3060 0.00000 1090.11628
## 3061 0.00000 1090.11628
## 3062 0.00000 1090.11628
## 3063 0.00000 1090.11628
## 3064 0.00000 1090.11628
## 3065 0.00000 1090.11628
## 3066 0.00000 1090.11628
## 3067 0.00000 1090.11628
## 3068 0.00000 1090.11628
## 3069 0.00000 1090.11628
## 3070 0.00000 1090.11628
## 3071 0.00000 1090.11628
## 3072 0.00000 1090.11628
## 3073 4812.20930 7834.88372
## 3074 4812.20930 7834.88372
## 3075 4812.20930 7834.88372
## 3076 4812.20930 7834.88372
## 3077 4812.20930 7834.88372
## 3078 4812.20930 7834.88372
## 3079 4812.20930 7834.88372
## 3080 4812.20930 7834.88372
## 3081 4812.20930 7834.88372
## 3082 4812.20930 7834.88372
## 3083 4812.20930 7834.88372
## 3084 4812.20930 7834.88372
## 3085 4812.20930 7834.88372
## 3086 4812.20930 7834.88372
## 3087 4812.20930 7834.88372
## 3088 4812.20930 7834.88372
## 3089 4812.20930 7834.88372
## 3090 4812.20930 7834.88372
## 3091 4812.20930 7834.88372
## 3092 4812.20930 7834.88372
## 3093 4812.20930 7834.88372
## 3094 4812.20930 7834.88372
## 3095 4812.20930 7834.88372
## 3096 4812.20930 7834.88372
## 3097 13489.53488 1281.97674
## 3098 13489.53488 1281.97674
## 3099 13489.53488 1281.97674
## 3100 13489.53488 1281.97674
## 3101 13489.53488 1281.97674
## 3102 13489.53488 1281.97674
## 3103 13489.53488 1281.97674
## 3104 13489.53488 1281.97674
## 3105 13489.53488 1281.97674
## 3106 13489.53488 1281.97674
## 3107 13489.53488 1281.97674
## 3108 13489.53488 1281.97674
## 3109 13489.53488 1281.97674
## 3110 13489.53488 1281.97674
## 3111 13489.53488 1281.97674
## 3112 13489.53488 1281.97674
## 3113 13489.53488 1281.97674
## 3114 13489.53488 1281.97674
## 3115 13489.53488 1281.97674
## 3116 13489.53488 1281.97674
## 3117 13489.53488 1281.97674
## 3118 13489.53488 1281.97674
## 3119 13489.53488 1281.97674
## 3120 13489.53488 1281.97674
## 3121 5752.32558 127.32558
## 3122 5752.32558 127.32558
## 3123 5752.32558 127.32558
## 3124 5752.32558 127.32558
## 3125 5752.32558 127.32558
## 3126 5752.32558 127.32558
## 3127 5752.32558 127.32558
## 3128 5752.32558 127.32558
## 3129 5752.32558 127.32558
## 3130 5752.32558 127.32558
## 3131 5752.32558 127.32558
## 3132 5752.32558 127.32558
## 3133 5752.32558 127.32558
## 3134 5752.32558 127.32558
## 3135 5752.32558 127.32558
## 3136 5752.32558 127.32558
## 3137 5752.32558 127.32558
## 3138 5752.32558 127.32558
## 3139 5752.32558 127.32558
## 3140 5752.32558 127.32558
## 3141 5752.32558 127.32558
## 3142 5752.32558 127.32558
## 3143 5752.32558 127.32558
## 3144 5752.32558 127.32558
## 3145 4046.51163 1438.95349
## 3146 4046.51163 1438.95349
## 3147 4046.51163 1438.95349
## 3148 4046.51163 1438.95349
## 3149 4046.51163 1438.95349
## 3150 4046.51163 1438.95349
## 3151 4046.51163 1438.95349
## 3152 4046.51163 1438.95349
## 3153 4046.51163 1438.95349
## 3154 4046.51163 1438.95349
## 3155 4046.51163 1438.95349
## 3156 4046.51163 1438.95349
## 3157 4046.51163 1438.95349
## 3158 4046.51163 1438.95349
## 3159 4046.51163 1438.95349
## 3160 4046.51163 1438.95349
## 3161 4046.51163 1438.95349
## 3162 4046.51163 1438.95349
## 3163 4046.51163 1438.95349
## 3164 4046.51163 1438.95349
## 3165 4046.51163 1438.95349
## 3166 4046.51163 1438.95349
## 3167 4046.51163 1438.95349
## 3168 4046.51163 1438.95349
## 3169 568.60465 0.00000
## 3170 568.60465 0.00000
## 3171 568.60465 0.00000
## 3172 568.60465 0.00000
## 3173 568.60465 0.00000
## 3174 568.60465 0.00000
## 3175 568.60465 0.00000
## 3176 568.60465 0.00000
## 3177 568.60465 0.00000
## 3178 568.60465 0.00000
## 3179 568.60465 0.00000
## 3180 568.60465 0.00000
## 3181 568.60465 0.00000
## 3182 568.60465 0.00000
## 3183 568.60465 0.00000
## 3184 568.60465 0.00000
## 3185 568.60465 0.00000
## 3186 568.60465 0.00000
## 3187 568.60465 0.00000
## 3188 568.60465 0.00000
## 3189 568.60465 0.00000
## 3190 568.60465 0.00000
## 3191 568.60465 0.00000
## 3192 568.60465 0.00000
## 3193 837.20930 0.00000
## 3194 837.20930 0.00000
## 3195 837.20930 0.00000
## 3196 837.20930 0.00000
## 3197 837.20930 0.00000
## 3198 837.20930 0.00000
## 3199 837.20930 0.00000
## 3200 837.20930 0.00000
## 3201 837.20930 0.00000
## 3202 837.20930 0.00000
## 3203 837.20930 0.00000
## 3204 837.20930 0.00000
## 3205 837.20930 0.00000
## 3206 837.20930 0.00000
## 3207 837.20930 0.00000
## 3208 837.20930 0.00000
## 3209 837.20930 0.00000
## 3210 837.20930 0.00000
## 3211 837.20930 0.00000
## 3212 837.20930 0.00000
## 3213 837.20930 0.00000
## 3214 837.20930 0.00000
## 3215 837.20930 0.00000
## 3216 837.20930 0.00000
## 3217 0.00000 1312.50000
## 3218 0.00000 1312.50000
## 3219 0.00000 1312.50000
## 3220 0.00000 1312.50000
## 3221 0.00000 1312.50000
## 3222 0.00000 1312.50000
## 3223 0.00000 1312.50000
## 3224 0.00000 1312.50000
## 3225 0.00000 1312.50000
## total_metaecosystem_Eup_indiv total_metaecosystem_Lox_indiv
## 1 3155.2326 2494.1860
## 2 3155.2326 2494.1860
## 3 3155.2326 2494.1860
## 4 3155.2326 2494.1860
## 5 3155.2326 2494.1860
## 6 3155.2326 2494.1860
## 7 3155.2326 2494.1860
## 8 3155.2326 2494.1860
## 9 3155.2326 2494.1860
## 10 3155.2326 2494.1860
## 11 3155.2326 2494.1860
## 12 3155.2326 2494.1860
## 13 3155.2326 2494.1860
## 14 3155.2326 2494.1860
## 15 3155.2326 2494.1860
## 16 3155.2326 2494.1860
## 17 3155.2326 2494.1860
## 18 3155.2326 2494.1860
## 19 3155.2326 2494.1860
## 20 3155.2326 2494.1860
## 21 3155.2326 2494.1860
## 22 3155.2326 2494.1860
## 23 3155.2326 2494.1860
## 24 3155.2326 2494.1860
## 25 4484.3023 218.0233
## 26 4484.3023 218.0233
## 27 4484.3023 218.0233
## 28 4484.3023 218.0233
## 29 4484.3023 218.0233
## 30 4484.3023 218.0233
## 31 4484.3023 218.0233
## 32 4484.3023 218.0233
## 33 4484.3023 218.0233
## 34 4484.3023 218.0233
## 35 4484.3023 218.0233
## 36 4484.3023 218.0233
## 37 4484.3023 218.0233
## 38 4484.3023 218.0233
## 39 4484.3023 218.0233
## 40 4484.3023 218.0233
## 41 4484.3023 218.0233
## 42 4484.3023 218.0233
## 43 4484.3023 218.0233
## 44 4484.3023 218.0233
## 45 4484.3023 218.0233
## 46 4484.3023 218.0233
## 47 4484.3023 218.0233
## 48 4484.3023 218.0233
## 49 1318.6047 0.0000
## 50 1318.6047 0.0000
## 51 1318.6047 0.0000
## 52 1318.6047 0.0000
## 53 1318.6047 0.0000
## 54 1318.6047 0.0000
## 55 1318.6047 0.0000
## 56 1318.6047 0.0000
## 57 1318.6047 0.0000
## 58 1318.6047 0.0000
## 59 1318.6047 0.0000
## 60 1318.6047 0.0000
## 61 1318.6047 0.0000
## 62 1318.6047 0.0000
## 63 1318.6047 0.0000
## 64 1318.6047 0.0000
## 65 1318.6047 0.0000
## 66 1318.6047 0.0000
## 67 1318.6047 0.0000
## 68 1318.6047 0.0000
## 69 1318.6047 0.0000
## 70 1318.6047 0.0000
## 71 1318.6047 0.0000
## 72 1318.6047 0.0000
## 73 5084.3023 0.0000
## 74 5084.3023 0.0000
## 75 5084.3023 0.0000
## 76 5084.3023 0.0000
## 77 5084.3023 0.0000
## 78 5084.3023 0.0000
## 79 5084.3023 0.0000
## 80 5084.3023 0.0000
## 81 5084.3023 0.0000
## 82 5084.3023 0.0000
## 83 5084.3023 0.0000
## 84 5084.3023 0.0000
## 85 5084.3023 0.0000
## 86 5084.3023 0.0000
## 87 5084.3023 0.0000
## 88 5084.3023 0.0000
## 89 5084.3023 0.0000
## 90 5084.3023 0.0000
## 91 5084.3023 0.0000
## 92 5084.3023 0.0000
## 93 5084.3023 0.0000
## 94 5084.3023 0.0000
## 95 5084.3023 0.0000
## 96 5084.3023 0.0000
## 97 5241.2791 436.0465
## 98 5241.2791 436.0465
## 99 5241.2791 436.0465
## 100 5241.2791 436.0465
## 101 5241.2791 436.0465
## 102 5241.2791 436.0465
## 103 5241.2791 436.0465
## 104 5241.2791 436.0465
## 105 5241.2791 436.0465
## 106 5241.2791 436.0465
## 107 5241.2791 436.0465
## 108 5241.2791 436.0465
## 109 5241.2791 436.0465
## 110 5241.2791 436.0465
## 111 5241.2791 436.0465
## 112 5241.2791 436.0465
## 113 5241.2791 436.0465
## 114 5241.2791 436.0465
## 115 5241.2791 436.0465
## 116 5241.2791 436.0465
## 117 5241.2791 436.0465
## 118 5241.2791 436.0465
## 119 5241.2791 436.0465
## 120 5241.2791 436.0465
## 121 2956.3953 0.0000
## 122 2956.3953 0.0000
## 123 2956.3953 0.0000
## 124 2956.3953 0.0000
## 125 2956.3953 0.0000
## 126 2956.3953 0.0000
## 127 2956.3953 0.0000
## 128 2956.3953 0.0000
## 129 2956.3953 0.0000
## 130 2956.3953 0.0000
## 131 2956.3953 0.0000
## 132 2956.3953 0.0000
## 133 2956.3953 0.0000
## 134 2956.3953 0.0000
## 135 2956.3953 0.0000
## 136 2956.3953 0.0000
## 137 2956.3953 0.0000
## 138 2956.3953 0.0000
## 139 2956.3953 0.0000
## 140 2956.3953 0.0000
## 141 2956.3953 0.0000
## 142 2956.3953 0.0000
## 143 2956.3953 0.0000
## 144 2956.3953 0.0000
## 145 662.7907 545.0581
## 146 662.7907 545.0581
## 147 662.7907 545.0581
## 148 662.7907 545.0581
## 149 662.7907 545.0581
## 150 662.7907 545.0581
## 151 662.7907 545.0581
## 152 662.7907 545.0581
## 153 662.7907 545.0581
## 154 662.7907 545.0581
## 155 662.7907 545.0581
## 156 662.7907 545.0581
## 157 662.7907 545.0581
## 158 662.7907 545.0581
## 159 662.7907 545.0581
## 160 662.7907 545.0581
## 161 662.7907 545.0581
## 162 662.7907 545.0581
## 163 662.7907 545.0581
## 164 662.7907 545.0581
## 165 662.7907 545.0581
## 166 662.7907 545.0581
## 167 662.7907 545.0581
## 168 662.7907 545.0581
## 169 2428.7791 1630.8140
## 170 2428.7791 1630.8140
## 171 2428.7791 1630.8140
## 172 2428.7791 1630.8140
## 173 2428.7791 1630.8140
## 174 2428.7791 1630.8140
## 175 2428.7791 1630.8140
## 176 2428.7791 1630.8140
## 177 2428.7791 1630.8140
## 178 2428.7791 1630.8140
## 179 2428.7791 1630.8140
## 180 2428.7791 1630.8140
## 181 2428.7791 1630.8140
## 182 2428.7791 1630.8140
## 183 2428.7791 1630.8140
## 184 2428.7791 1630.8140
## 185 2428.7791 1630.8140
## 186 2428.7791 1630.8140
## 187 2428.7791 1630.8140
## 188 2428.7791 1630.8140
## 189 2428.7791 1630.8140
## 190 2428.7791 1630.8140
## 191 2428.7791 1630.8140
## 192 2428.7791 1630.8140
## 193 3155.2326 2494.1860
## 194 3155.2326 2494.1860
## 195 3155.2326 2494.1860
## 196 3155.2326 2494.1860
## 197 3155.2326 2494.1860
## 198 3155.2326 2494.1860
## 199 3155.2326 2494.1860
## 200 3155.2326 2494.1860
## 201 3155.2326 2494.1860
## 202 3155.2326 2494.1860
## 203 3155.2326 2494.1860
## 204 3155.2326 2494.1860
## 205 3155.2326 2494.1860
## 206 3155.2326 2494.1860
## 207 3155.2326 2494.1860
## 208 3155.2326 2494.1860
## 209 3155.2326 2494.1860
## 210 3155.2326 2494.1860
## 211 3155.2326 2494.1860
## 212 3155.2326 2494.1860
## 213 3155.2326 2494.1860
## 214 3155.2326 2494.1860
## 215 3155.2326 2494.1860
## 216 3155.2326 2494.1860
## 217 8312.7907 1438.9535
## 218 8312.7907 1438.9535
## 219 8312.7907 1438.9535
## 220 8312.7907 1438.9535
## 221 8312.7907 1438.9535
## 222 8312.7907 1438.9535
## 223 8312.7907 1438.9535
## 224 8312.7907 1438.9535
## 225 8312.7907 1438.9535
## 226 8312.7907 1438.9535
## 227 8312.7907 1438.9535
## 228 8312.7907 1438.9535
## 229 8312.7907 1438.9535
## 230 8312.7907 1438.9535
## 231 8312.7907 1438.9535
## 232 8312.7907 1438.9535
## 233 8312.7907 1438.9535
## 234 8312.7907 1438.9535
## 235 8312.7907 1438.9535
## 236 8312.7907 1438.9535
## 237 8312.7907 1438.9535
## 238 8312.7907 1438.9535
## 239 8312.7907 1438.9535
## 240 8312.7907 1438.9535
## 241 3071.5116 0.0000
## 242 3071.5116 0.0000
## 243 3071.5116 0.0000
## 244 3071.5116 0.0000
## 245 3071.5116 0.0000
## 246 3071.5116 0.0000
## 247 3071.5116 0.0000
## 248 3071.5116 0.0000
## 249 3071.5116 0.0000
## 250 3071.5116 0.0000
## 251 3071.5116 0.0000
## 252 3071.5116 0.0000
## 253 3071.5116 0.0000
## 254 3071.5116 0.0000
## 255 3071.5116 0.0000
## 256 3071.5116 0.0000
## 257 3071.5116 0.0000
## 258 3071.5116 0.0000
## 259 3071.5116 0.0000
## 260 3071.5116 0.0000
## 261 3071.5116 0.0000
## 262 3071.5116 0.0000
## 263 3071.5116 0.0000
## 264 3071.5116 0.0000
## 265 4988.3721 0.0000
## 266 4988.3721 0.0000
## 267 4988.3721 0.0000
## 268 4988.3721 0.0000
## 269 4988.3721 0.0000
## 270 4988.3721 0.0000
## 271 4988.3721 0.0000
## 272 4988.3721 0.0000
## 273 4988.3721 0.0000
## 274 4988.3721 0.0000
## 275 4988.3721 0.0000
## 276 4988.3721 0.0000
## 277 4988.3721 0.0000
## 278 4988.3721 0.0000
## 279 4988.3721 0.0000
## 280 4988.3721 0.0000
## 281 4988.3721 0.0000
## 282 4988.3721 0.0000
## 283 4988.3721 0.0000
## 284 4988.3721 0.0000
## 285 4988.3721 0.0000
## 286 4988.3721 0.0000
## 287 4988.3721 0.0000
## 288 4988.3721 0.0000
## 289 4534.8837 436.0465
## 290 4534.8837 436.0465
## 291 4534.8837 436.0465
## 292 4534.8837 436.0465
## 293 4534.8837 436.0465
## 294 4534.8837 436.0465
## 295 4534.8837 436.0465
## 296 4534.8837 436.0465
## 297 4534.8837 436.0465
## 298 4534.8837 436.0465
## 299 4534.8837 436.0465
## 300 4534.8837 436.0465
## 301 4534.8837 436.0465
## 302 4534.8837 436.0465
## 303 4534.8837 436.0465
## 304 4534.8837 436.0465
## 305 4534.8837 436.0465
## 306 4534.8837 436.0465
## 307 4534.8837 436.0465
## 308 4534.8837 436.0465
## 309 4534.8837 436.0465
## 310 4534.8837 436.0465
## 311 4534.8837 436.0465
## 312 4534.8837 436.0465
## 313 1456.3953 0.0000
## 314 1456.3953 0.0000
## 315 1456.3953 0.0000
## 316 1456.3953 0.0000
## 317 1456.3953 0.0000
## 318 1456.3953 0.0000
## 319 1456.3953 0.0000
## 320 1456.3953 0.0000
## 321 1456.3953 0.0000
## 322 1456.3953 0.0000
## 323 1456.3953 0.0000
## 324 1456.3953 0.0000
## 325 1456.3953 0.0000
## 326 1456.3953 0.0000
## 327 1456.3953 0.0000
## 328 1456.3953 0.0000
## 329 1456.3953 0.0000
## 330 1456.3953 0.0000
## 331 1456.3953 0.0000
## 332 1456.3953 0.0000
## 333 1456.3953 0.0000
## 334 1456.3953 0.0000
## 335 1456.3953 0.0000
## 336 1456.3953 0.0000
## 337 1059.5930 0.0000
## 338 1059.5930 0.0000
## 339 1059.5930 0.0000
## 340 1059.5930 0.0000
## 341 1059.5930 0.0000
## 342 1059.5930 0.0000
## 343 1059.5930 0.0000
## 344 1059.5930 0.0000
## 345 1059.5930 0.0000
## 346 1059.5930 0.0000
## 347 1059.5930 0.0000
## 348 1059.5930 0.0000
## 349 1059.5930 0.0000
## 350 1059.5930 0.0000
## 351 1059.5930 0.0000
## 352 1059.5930 0.0000
## 353 1059.5930 0.0000
## 354 1059.5930 0.0000
## 355 1059.5930 0.0000
## 356 1059.5930 0.0000
## 357 1059.5930 0.0000
## 358 1059.5930 0.0000
## 359 1059.5930 0.0000
## 360 1059.5930 0.0000
## 361 1360.4651 545.0581
## 362 1360.4651 545.0581
## 363 1360.4651 545.0581
## 364 1360.4651 545.0581
## 365 1360.4651 545.0581
## 366 1360.4651 545.0581
## 367 1360.4651 545.0581
## 368 1360.4651 545.0581
## 369 1360.4651 545.0581
## 370 1360.4651 545.0581
## 371 1360.4651 545.0581
## 372 1360.4651 545.0581
## 373 1360.4651 545.0581
## 374 1360.4651 545.0581
## 375 1360.4651 545.0581
## 376 1360.4651 545.0581
## 377 1360.4651 545.0581
## 378 1360.4651 545.0581
## 379 1360.4651 545.0581
## 380 1360.4651 545.0581
## 381 1360.4651 545.0581
## 382 1360.4651 545.0581
## 383 1360.4651 545.0581
## 384 1360.4651 545.0581
## 385 3155.2326 2494.1860
## 386 3155.2326 2494.1860
## 387 3155.2326 2494.1860
## 388 3155.2326 2494.1860
## 389 3155.2326 2494.1860
## 390 3155.2326 2494.1860
## 391 3155.2326 2494.1860
## 392 3155.2326 2494.1860
## 393 3155.2326 2494.1860
## 394 3155.2326 2494.1860
## 395 3155.2326 2494.1860
## 396 3155.2326 2494.1860
## 397 3155.2326 2494.1860
## 398 3155.2326 2494.1860
## 399 3155.2326 2494.1860
## 400 3155.2326 2494.1860
## 401 3155.2326 2494.1860
## 402 3155.2326 2494.1860
## 403 3155.2326 2494.1860
## 404 3155.2326 2494.1860
## 405 3155.2326 2494.1860
## 406 3155.2326 2494.1860
## 407 3155.2326 2494.1860
## 408 3155.2326 2494.1860
## 409 2190.6977 2188.9535
## 410 2190.6977 2188.9535
## 411 2190.6977 2188.9535
## 412 2190.6977 2188.9535
## 413 2190.6977 2188.9535
## 414 2190.6977 2188.9535
## 415 2190.6977 2188.9535
## 416 2190.6977 2188.9535
## 417 2190.6977 2188.9535
## 418 2190.6977 2188.9535
## 419 2190.6977 2188.9535
## 420 2190.6977 2188.9535
## 421 2190.6977 2188.9535
## 422 2190.6977 2188.9535
## 423 2190.6977 2188.9535
## 424 2190.6977 2188.9535
## 425 2190.6977 2188.9535
## 426 2190.6977 2188.9535
## 427 2190.6977 2188.9535
## 428 2190.6977 2188.9535
## 429 2190.6977 2188.9535
## 430 2190.6977 2188.9535
## 431 2190.6977 2188.9535
## 432 2190.6977 2188.9535
## 433 6586.0465 244.1860
## 434 6586.0465 244.1860
## 435 6586.0465 244.1860
## 436 6586.0465 244.1860
## 437 6586.0465 244.1860
## 438 6586.0465 244.1860
## 439 6586.0465 244.1860
## 440 6586.0465 244.1860
## 441 6586.0465 244.1860
## 442 6586.0465 244.1860
## 443 6586.0465 244.1860
## 444 6586.0465 244.1860
## 445 6586.0465 244.1860
## 446 6586.0465 244.1860
## 447 6586.0465 244.1860
## 448 6586.0465 244.1860
## 449 6586.0465 244.1860
## 450 6586.0465 244.1860
## 451 6586.0465 244.1860
## 452 6586.0465 244.1860
## 453 6586.0465 244.1860
## 454 6586.0465 244.1860
## 455 6586.0465 244.1860
## 456 6586.0465 244.1860
## 457 3453.4884 837.2093
## 458 3453.4884 837.2093
## 459 3453.4884 837.2093
## 460 3453.4884 837.2093
## 461 3453.4884 837.2093
## 462 3453.4884 837.2093
## 463 3453.4884 837.2093
## 464 3453.4884 837.2093
## 465 3453.4884 837.2093
## 466 3453.4884 837.2093
## 467 3453.4884 837.2093
## 468 3453.4884 837.2093
## 469 3453.4884 837.2093
## 470 3453.4884 837.2093
## 471 3453.4884 837.2093
## 472 3453.4884 837.2093
## 473 3453.4884 837.2093
## 474 3453.4884 837.2093
## 475 3453.4884 837.2093
## 476 3453.4884 837.2093
## 477 3453.4884 837.2093
## 478 3453.4884 837.2093
## 479 3453.4884 837.2093
## 480 3453.4884 837.2093
## 481 2136.6279 436.0465
## 482 2136.6279 436.0465
## 483 2136.6279 436.0465
## 484 2136.6279 436.0465
## 485 2136.6279 436.0465
## 486 2136.6279 436.0465
## 487 2136.6279 436.0465
## 488 2136.6279 436.0465
## 489 2136.6279 436.0465
## 490 2136.6279 436.0465
## 491 2136.6279 436.0465
## 492 2136.6279 436.0465
## 493 2136.6279 436.0465
## 494 2136.6279 436.0465
## 495 2136.6279 436.0465
## 496 2136.6279 436.0465
## 497 2136.6279 436.0465
## 498 2136.6279 436.0465
## 499 2136.6279 436.0465
## 500 2136.6279 436.0465
## 501 2136.6279 436.0465
## 502 2136.6279 436.0465
## 503 2136.6279 436.0465
## 504 2136.6279 436.0465
## 505 383.7209 0.0000
## 506 383.7209 0.0000
## 507 383.7209 0.0000
## 508 383.7209 0.0000
## 509 383.7209 0.0000
## 510 383.7209 0.0000
## 511 383.7209 0.0000
## 512 383.7209 0.0000
## 513 383.7209 0.0000
## 514 383.7209 0.0000
## 515 383.7209 0.0000
## 516 383.7209 0.0000
## 517 383.7209 0.0000
## 518 383.7209 0.0000
## 519 383.7209 0.0000
## 520 383.7209 0.0000
## 521 383.7209 0.0000
## 522 383.7209 0.0000
## 523 383.7209 0.0000
## 524 383.7209 0.0000
## 525 383.7209 0.0000
## 526 383.7209 0.0000
## 527 383.7209 0.0000
## 528 383.7209 0.0000
## 529 0.0000 545.0581
## 530 0.0000 545.0581
## 531 0.0000 545.0581
## 532 0.0000 545.0581
## 533 0.0000 545.0581
## 534 0.0000 545.0581
## 535 0.0000 545.0581
## 536 0.0000 545.0581
## 537 0.0000 545.0581
## 538 0.0000 545.0581
## 539 0.0000 545.0581
## 540 0.0000 545.0581
## 541 0.0000 545.0581
## 542 0.0000 545.0581
## 543 0.0000 545.0581
## 544 0.0000 545.0581
## 545 0.0000 545.0581
## 546 0.0000 545.0581
## 547 0.0000 545.0581
## 548 0.0000 545.0581
## 549 0.0000 545.0581
## 550 0.0000 545.0581
## 551 0.0000 545.0581
## 552 0.0000 545.0581
## 553 4469.4767 1212.2093
## 554 4469.4767 1212.2093
## 555 4469.4767 1212.2093
## 556 4469.4767 1212.2093
## 557 4469.4767 1212.2093
## 558 4469.4767 1212.2093
## 559 4469.4767 1212.2093
## 560 4469.4767 1212.2093
## 561 4469.4767 1212.2093
## 562 4469.4767 1212.2093
## 563 4469.4767 1212.2093
## 564 4469.4767 1212.2093
## 565 4469.4767 1212.2093
## 566 4469.4767 1212.2093
## 567 4469.4767 1212.2093
## 568 4469.4767 1212.2093
## 569 4469.4767 1212.2093
## 570 4469.4767 1212.2093
## 571 4469.4767 1212.2093
## 572 4469.4767 1212.2093
## 573 4469.4767 1212.2093
## 574 4469.4767 1212.2093
## 575 4469.4767 1212.2093
## 576 4469.4767 1212.2093
## 577 3155.2326 2494.1860
## 578 3155.2326 2494.1860
## 579 3155.2326 2494.1860
## 580 3155.2326 2494.1860
## 581 3155.2326 2494.1860
## 582 3155.2326 2494.1860
## 583 3155.2326 2494.1860
## 584 3155.2326 2494.1860
## 585 3155.2326 2494.1860
## 586 3155.2326 2494.1860
## 587 3155.2326 2494.1860
## 588 3155.2326 2494.1860
## 589 3155.2326 2494.1860
## 590 3155.2326 2494.1860
## 591 3155.2326 2494.1860
## 592 3155.2326 2494.1860
## 593 3155.2326 2494.1860
## 594 3155.2326 2494.1860
## 595 3155.2326 2494.1860
## 596 3155.2326 2494.1860
## 597 3155.2326 2494.1860
## 598 3155.2326 2494.1860
## 599 3155.2326 2494.1860
## 600 3155.2326 2494.1860
## 601 2417.4419 218.0233
## 602 2417.4419 218.0233
## 603 2417.4419 218.0233
## 604 2417.4419 218.0233
## 605 2417.4419 218.0233
## 606 2417.4419 218.0233
## 607 2417.4419 218.0233
## 608 2417.4419 218.0233
## 609 2417.4419 218.0233
## 610 2417.4419 218.0233
## 611 2417.4419 218.0233
## 612 2417.4419 218.0233
## 613 2417.4419 218.0233
## 614 2417.4419 218.0233
## 615 2417.4419 218.0233
## 616 2417.4419 218.0233
## 617 2417.4419 218.0233
## 618 2417.4419 218.0233
## 619 2417.4419 218.0233
## 620 2417.4419 218.0233
## 621 2417.4419 218.0233
## 622 2417.4419 218.0233
## 623 2417.4419 218.0233
## 624 2417.4419 218.0233
## 625 8234.3023 0.0000
## 626 8234.3023 0.0000
## 627 8234.3023 0.0000
## 628 8234.3023 0.0000
## 629 8234.3023 0.0000
## 630 8234.3023 0.0000
## 631 8234.3023 0.0000
## 632 8234.3023 0.0000
## 633 8234.3023 0.0000
## 634 8234.3023 0.0000
## 635 8234.3023 0.0000
## 636 8234.3023 0.0000
## 637 8234.3023 0.0000
## 638 8234.3023 0.0000
## 639 8234.3023 0.0000
## 640 8234.3023 0.0000
## 641 8234.3023 0.0000
## 642 8234.3023 0.0000
## 643 8234.3023 0.0000
## 644 8234.3023 0.0000
## 645 8234.3023 0.0000
## 646 8234.3023 0.0000
## 647 8234.3023 0.0000
## 648 8234.3023 0.0000
## 649 1090.1163 0.0000
## 650 1090.1163 0.0000
## 651 1090.1163 0.0000
## 652 1090.1163 0.0000
## 653 1090.1163 0.0000
## 654 1090.1163 0.0000
## 655 1090.1163 0.0000
## 656 1090.1163 0.0000
## 657 1090.1163 0.0000
## 658 1090.1163 0.0000
## 659 1090.1163 0.0000
## 660 1090.1163 0.0000
## 661 1090.1163 0.0000
## 662 1090.1163 0.0000
## 663 1090.1163 0.0000
## 664 1090.1163 0.0000
## 665 1090.1163 0.0000
## 666 1090.1163 0.0000
## 667 1090.1163 0.0000
## 668 1090.1163 0.0000
## 669 1090.1163 0.0000
## 670 1090.1163 0.0000
## 671 1090.1163 0.0000
## 672 1090.1163 0.0000
## 673 5781.9767 436.0465
## 674 5781.9767 436.0465
## 675 5781.9767 436.0465
## 676 5781.9767 436.0465
## 677 5781.9767 436.0465
## 678 5781.9767 436.0465
## 679 5781.9767 436.0465
## 680 5781.9767 436.0465
## 681 5781.9767 436.0465
## 682 5781.9767 436.0465
## 683 5781.9767 436.0465
## 684 5781.9767 436.0465
## 685 5781.9767 436.0465
## 686 5781.9767 436.0465
## 687 5781.9767 436.0465
## 688 5781.9767 436.0465
## 689 5781.9767 436.0465
## 690 5781.9767 436.0465
## 691 5781.9767 436.0465
## 692 5781.9767 436.0465
## 693 5781.9767 436.0465
## 694 5781.9767 436.0465
## 695 5781.9767 436.0465
## 696 5781.9767 436.0465
## 697 0.0000 1090.1163
## 698 0.0000 1090.1163
## 699 0.0000 1090.1163
## 700 0.0000 1090.1163
## 701 0.0000 1090.1163
## 702 0.0000 1090.1163
## 703 0.0000 1090.1163
## 704 0.0000 1090.1163
## 705 0.0000 1090.1163
## 706 0.0000 1090.1163
## 707 0.0000 1090.1163
## 708 0.0000 1090.1163
## 709 0.0000 1090.1163
## 710 0.0000 1090.1163
## 711 0.0000 1090.1163
## 712 0.0000 1090.1163
## 713 0.0000 1090.1163
## 714 0.0000 1090.1163
## 715 0.0000 1090.1163
## 716 0.0000 1090.1163
## 717 0.0000 1090.1163
## 718 0.0000 1090.1163
## 719 0.0000 1090.1163
## 720 0.0000 1090.1163
## 721 1369.1860 545.0581
## 722 1369.1860 545.0581
## 723 1369.1860 545.0581
## 724 1369.1860 545.0581
## 725 1369.1860 545.0581
## 726 1369.1860 545.0581
## 727 1369.1860 545.0581
## 728 1369.1860 545.0581
## 729 1369.1860 545.0581
## 730 1369.1860 545.0581
## 731 1369.1860 545.0581
## 732 1369.1860 545.0581
## 733 1369.1860 545.0581
## 734 1369.1860 545.0581
## 735 1369.1860 545.0581
## 736 1369.1860 545.0581
## 737 1369.1860 545.0581
## 738 1369.1860 545.0581
## 739 1369.1860 545.0581
## 740 1369.1860 545.0581
## 741 1369.1860 545.0581
## 742 1369.1860 545.0581
## 743 1369.1860 545.0581
## 744 1369.1860 545.0581
## 745 170.0581 545.0581
## 746 170.0581 545.0581
## 747 170.0581 545.0581
## 748 170.0581 545.0581
## 749 170.0581 545.0581
## 750 170.0581 545.0581
## 751 170.0581 545.0581
## 752 170.0581 545.0581
## 753 170.0581 545.0581
## 754 170.0581 545.0581
## 755 170.0581 545.0581
## 756 170.0581 545.0581
## 757 170.0581 545.0581
## 758 170.0581 545.0581
## 759 170.0581 545.0581
## 760 170.0581 545.0581
## 761 170.0581 545.0581
## 762 170.0581 545.0581
## 763 170.0581 545.0581
## 764 170.0581 545.0581
## 765 170.0581 545.0581
## 766 170.0581 545.0581
## 767 170.0581 545.0581
## 768 170.0581 545.0581
## 769 3155.2326 2494.1860
## 770 3155.2326 2494.1860
## 771 3155.2326 2494.1860
## 772 3155.2326 2494.1860
## 773 3155.2326 2494.1860
## 774 3155.2326 2494.1860
## 775 3155.2326 2494.1860
## 776 3155.2326 2494.1860
## 777 3155.2326 2494.1860
## 778 3155.2326 2494.1860
## 779 3155.2326 2494.1860
## 780 3155.2326 2494.1860
## 781 3155.2326 2494.1860
## 782 3155.2326 2494.1860
## 783 3155.2326 2494.1860
## 784 3155.2326 2494.1860
## 785 3155.2326 2494.1860
## 786 3155.2326 2494.1860
## 787 3155.2326 2494.1860
## 788 3155.2326 2494.1860
## 789 3155.2326 2494.1860
## 790 3155.2326 2494.1860
## 791 3155.2326 2494.1860
## 792 3155.2326 2494.1860
## 793 6743.0233 2372.0930
## 794 6743.0233 2372.0930
## 795 6743.0233 2372.0930
## 796 6743.0233 2372.0930
## 797 6743.0233 2372.0930
## 798 6743.0233 2372.0930
## 799 6743.0233 2372.0930
## 800 6743.0233 2372.0930
## 801 6743.0233 2372.0930
## 802 6743.0233 2372.0930
## 803 6743.0233 2372.0930
## 804 6743.0233 2372.0930
## 805 6743.0233 2372.0930
## 806 6743.0233 2372.0930
## 807 6743.0233 2372.0930
## 808 6743.0233 2372.0930
## 809 6743.0233 2372.0930
## 810 6743.0233 2372.0930
## 811 6743.0233 2372.0930
## 812 6743.0233 2372.0930
## 813 6743.0233 2372.0930
## 814 6743.0233 2372.0930
## 815 6743.0233 2372.0930
## 816 6743.0233 2372.0930
## 817 5661.6279 0.0000
## 818 5661.6279 0.0000
## 819 5661.6279 0.0000
## 820 5661.6279 0.0000
## 821 5661.6279 0.0000
## 822 5661.6279 0.0000
## 823 5661.6279 0.0000
## 824 5661.6279 0.0000
## 825 5661.6279 0.0000
## 826 5661.6279 0.0000
## 827 5661.6279 0.0000
## 828 5661.6279 0.0000
## 829 5661.6279 0.0000
## 830 5661.6279 0.0000
## 831 5661.6279 0.0000
## 832 5661.6279 0.0000
## 833 5661.6279 0.0000
## 834 5661.6279 0.0000
## 835 5661.6279 0.0000
## 836 5661.6279 0.0000
## 837 5661.6279 0.0000
## 838 5661.6279 0.0000
## 839 5661.6279 0.0000
## 840 5661.6279 0.0000
## 841 5293.6047 0.0000
## 842 5293.6047 0.0000
## 843 5293.6047 0.0000
## 844 5293.6047 0.0000
## 845 5293.6047 0.0000
## 846 5293.6047 0.0000
## 847 5293.6047 0.0000
## 848 5293.6047 0.0000
## 849 5293.6047 0.0000
## 850 5293.6047 0.0000
## 851 5293.6047 0.0000
## 852 5293.6047 0.0000
## 853 5293.6047 0.0000
## 854 5293.6047 0.0000
## 855 5293.6047 0.0000
## 856 5293.6047 0.0000
## 857 5293.6047 0.0000
## 858 5293.6047 0.0000
## 859 5293.6047 0.0000
## 860 5293.6047 0.0000
## 861 5293.6047 0.0000
## 862 5293.6047 0.0000
## 863 5293.6047 0.0000
## 864 5293.6047 0.0000
## 865 3654.0698 1526.1628
## 866 3654.0698 1526.1628
## 867 3654.0698 1526.1628
## 868 3654.0698 1526.1628
## 869 3654.0698 1526.1628
## 870 3654.0698 1526.1628
## 871 3654.0698 1526.1628
## 872 3654.0698 1526.1628
## 873 3654.0698 1526.1628
## 874 3654.0698 1526.1628
## 875 3654.0698 1526.1628
## 876 3654.0698 1526.1628
## 877 3654.0698 1526.1628
## 878 3654.0698 1526.1628
## 879 3654.0698 1526.1628
## 880 3654.0698 1526.1628
## 881 3654.0698 1526.1628
## 882 3654.0698 1526.1628
## 883 3654.0698 1526.1628
## 884 3654.0698 1526.1628
## 885 3654.0698 1526.1628
## 886 3654.0698 1526.1628
## 887 3654.0698 1526.1628
## 888 3654.0698 1526.1628
## 889 2581.3953 1875.0000
## 890 2581.3953 1875.0000
## 891 2581.3953 1875.0000
## 892 2581.3953 1875.0000
## 893 2581.3953 1875.0000
## 894 2581.3953 1875.0000
## 895 2581.3953 1875.0000
## 896 2581.3953 1875.0000
## 897 2581.3953 1875.0000
## 898 2581.3953 1875.0000
## 899 2581.3953 1875.0000
## 900 2581.3953 1875.0000
## 901 2581.3953 1875.0000
## 902 2581.3953 1875.0000
## 903 2581.3953 1875.0000
## 904 2581.3953 1875.0000
## 905 2581.3953 1875.0000
## 906 2581.3953 1875.0000
## 907 2581.3953 1875.0000
## 908 2581.3953 1875.0000
## 909 2581.3953 1875.0000
## 910 2581.3953 1875.0000
## 911 2581.3953 1875.0000
## 912 2581.3953 1875.0000
## 913 1046.5116 1521.8023
## 914 1046.5116 1521.8023
## 915 1046.5116 1521.8023
## 916 1046.5116 1521.8023
## 917 1046.5116 1521.8023
## 918 1046.5116 1521.8023
## 919 1046.5116 1521.8023
## 920 1046.5116 1521.8023
## 921 1046.5116 1521.8023
## 922 1046.5116 1521.8023
## 923 1046.5116 1521.8023
## 924 1046.5116 1521.8023
## 925 1046.5116 1521.8023
## 926 1046.5116 1521.8023
## 927 1046.5116 1521.8023
## 928 1046.5116 1521.8023
## 929 1046.5116 1521.8023
## 930 1046.5116 1521.8023
## 931 1046.5116 1521.8023
## 932 1046.5116 1521.8023
## 933 1046.5116 1521.8023
## 934 1046.5116 1521.8023
## 935 1046.5116 1521.8023
## 936 1046.5116 1521.8023
## 937 1090.1163 545.0581
## 938 1090.1163 545.0581
## 939 1090.1163 545.0581
## 940 1090.1163 545.0581
## 941 1090.1163 545.0581
## 942 1090.1163 545.0581
## 943 1090.1163 545.0581
## 944 1090.1163 545.0581
## 945 1090.1163 545.0581
## 946 1090.1163 545.0581
## 947 1090.1163 545.0581
## 948 1090.1163 545.0581
## 949 1090.1163 545.0581
## 950 1090.1163 545.0581
## 951 1090.1163 545.0581
## 952 1090.1163 545.0581
## 953 1090.1163 545.0581
## 954 1090.1163 545.0581
## 955 1090.1163 545.0581
## 956 1090.1163 545.0581
## 957 1090.1163 545.0581
## 958 1090.1163 545.0581
## 959 1090.1163 545.0581
## 960 1090.1163 545.0581
## 961 3155.2326 2494.1860
## 962 3155.2326 2494.1860
## 963 3155.2326 2494.1860
## 964 3155.2326 2494.1860
## 965 3155.2326 2494.1860
## 966 3155.2326 2494.1860
## 967 3155.2326 2494.1860
## 968 3155.2326 2494.1860
## 969 3155.2326 2494.1860
## 970 3155.2326 2494.1860
## 971 3155.2326 2494.1860
## 972 3155.2326 2494.1860
## 973 3155.2326 2494.1860
## 974 3155.2326 2494.1860
## 975 3155.2326 2494.1860
## 976 3155.2326 2494.1860
## 977 3155.2326 2494.1860
## 978 3155.2326 2494.1860
## 979 3155.2326 2494.1860
## 980 3155.2326 2494.1860
## 981 3155.2326 2494.1860
## 982 3155.2326 2494.1860
## 983 3155.2326 2494.1860
## 984 3155.2326 2494.1860
## 985 3804.0698 129.0698
## 986 3804.0698 129.0698
## 987 3804.0698 129.0698
## 988 3804.0698 129.0698
## 989 3804.0698 129.0698
## 990 3804.0698 129.0698
## 991 3804.0698 129.0698
## 992 3804.0698 129.0698
## 993 3804.0698 129.0698
## 994 3804.0698 129.0698
## 995 3804.0698 129.0698
## 996 3804.0698 129.0698
## 997 3804.0698 129.0698
## 998 3804.0698 129.0698
## 999 3804.0698 129.0698
## 1000 3804.0698 129.0698
## 1001 3804.0698 129.0698
## 1002 3804.0698 129.0698
## 1003 3804.0698 129.0698
## 1004 3804.0698 129.0698
## 1005 3804.0698 129.0698
## 1006 3804.0698 129.0698
## 1007 3804.0698 129.0698
## 1008 3804.0698 129.0698
## 1009 1559.3023 282.5581
## 1010 1559.3023 282.5581
## 1011 1559.3023 282.5581
## 1012 1559.3023 282.5581
## 1013 1559.3023 282.5581
## 1014 1559.3023 282.5581
## 1015 1559.3023 282.5581
## 1016 1559.3023 282.5581
## 1017 1559.3023 282.5581
## 1018 1559.3023 282.5581
## 1019 1559.3023 282.5581
## 1020 1559.3023 282.5581
## 1021 1559.3023 282.5581
## 1022 1559.3023 282.5581
## 1023 1559.3023 282.5581
## 1024 1559.3023 282.5581
## 1025 1559.3023 282.5581
## 1026 1559.3023 282.5581
## 1027 1559.3023 282.5581
## 1028 1559.3023 282.5581
## 1029 1559.3023 282.5581
## 1030 1559.3023 282.5581
## 1031 1559.3023 282.5581
## 1032 1559.3023 282.5581
## 1033 5644.1860 0.0000
## 1034 5644.1860 0.0000
## 1035 5644.1860 0.0000
## 1036 5644.1860 0.0000
## 1037 5644.1860 0.0000
## 1038 5644.1860 0.0000
## 1039 5644.1860 0.0000
## 1040 5644.1860 0.0000
## 1041 5644.1860 0.0000
## 1042 5644.1860 0.0000
## 1043 5644.1860 0.0000
## 1044 5644.1860 0.0000
## 1045 5644.1860 0.0000
## 1046 5644.1860 0.0000
## 1047 5644.1860 0.0000
## 1048 5644.1860 0.0000
## 1049 5644.1860 0.0000
## 1050 5644.1860 0.0000
## 1051 5644.1860 0.0000
## 1052 5644.1860 0.0000
## 1053 5644.1860 0.0000
## 1054 5644.1860 0.0000
## 1055 5644.1860 0.0000
## 1056 5644.1860 0.0000
## 1057 4822.6744 0.0000
## 1058 4822.6744 0.0000
## 1059 4822.6744 0.0000
## 1060 4822.6744 0.0000
## 1061 4822.6744 0.0000
## 1062 4822.6744 0.0000
## 1063 4822.6744 0.0000
## 1064 4822.6744 0.0000
## 1065 4822.6744 0.0000
## 1066 4822.6744 0.0000
## 1067 4822.6744 0.0000
## 1068 4822.6744 0.0000
## 1069 4822.6744 0.0000
## 1070 4822.6744 0.0000
## 1071 4822.6744 0.0000
## 1072 4822.6744 0.0000
## 1073 4822.6744 0.0000
## 1074 4822.6744 0.0000
## 1075 4822.6744 0.0000
## 1076 4822.6744 0.0000
## 1077 4822.6744 0.0000
## 1078 4822.6744 0.0000
## 1079 4822.6744 0.0000
## 1080 4822.6744 0.0000
## 1081 2956.3953 0.0000
## 1082 2956.3953 0.0000
## 1083 2956.3953 0.0000
## 1084 2956.3953 0.0000
## 1085 2956.3953 0.0000
## 1086 2956.3953 0.0000
## 1087 2956.3953 0.0000
## 1088 2956.3953 0.0000
## 1089 2956.3953 0.0000
## 1090 2956.3953 0.0000
## 1091 2956.3953 0.0000
## 1092 2956.3953 0.0000
## 1093 2956.3953 0.0000
## 1094 2956.3953 0.0000
## 1095 2956.3953 0.0000
## 1096 2956.3953 0.0000
## 1097 2956.3953 0.0000
## 1098 2956.3953 0.0000
## 1099 2956.3953 0.0000
## 1100 2956.3953 0.0000
## 1101 2956.3953 0.0000
## 1102 2956.3953 0.0000
## 1103 2956.3953 0.0000
## 1104 2956.3953 0.0000
## 1105 662.7907 545.0581
## 1106 662.7907 545.0581
## 1107 662.7907 545.0581
## 1108 662.7907 545.0581
## 1109 662.7907 545.0581
## 1110 662.7907 545.0581
## 1111 662.7907 545.0581
## 1112 662.7907 545.0581
## 1113 662.7907 545.0581
## 1114 662.7907 545.0581
## 1115 662.7907 545.0581
## 1116 662.7907 545.0581
## 1117 662.7907 545.0581
## 1118 662.7907 545.0581
## 1119 662.7907 545.0581
## 1120 662.7907 545.0581
## 1121 662.7907 545.0581
## 1122 662.7907 545.0581
## 1123 662.7907 545.0581
## 1124 662.7907 545.0581
## 1125 662.7907 545.0581
## 1126 662.7907 545.0581
## 1127 662.7907 545.0581
## 1128 662.7907 545.0581
## 1129 2428.7791 1630.8140
## 1130 2428.7791 1630.8140
## 1131 2428.7791 1630.8140
## 1132 2428.7791 1630.8140
## 1133 2428.7791 1630.8140
## 1134 2428.7791 1630.8140
## 1135 2428.7791 1630.8140
## 1136 2428.7791 1630.8140
## 1137 2428.7791 1630.8140
## 1138 2428.7791 1630.8140
## 1139 2428.7791 1630.8140
## 1140 2428.7791 1630.8140
## 1141 2428.7791 1630.8140
## 1142 2428.7791 1630.8140
## 1143 2428.7791 1630.8140
## 1144 2428.7791 1630.8140
## 1145 2428.7791 1630.8140
## 1146 2428.7791 1630.8140
## 1147 2428.7791 1630.8140
## 1148 2428.7791 1630.8140
## 1149 2428.7791 1630.8140
## 1150 2428.7791 1630.8140
## 1151 2428.7791 1630.8140
## 1152 2428.7791 1630.8140
## 1153 3155.2326 2494.1860
## 1154 3155.2326 2494.1860
## 1155 3155.2326 2494.1860
## 1156 3155.2326 2494.1860
## 1157 3155.2326 2494.1860
## 1158 3155.2326 2494.1860
## 1159 3155.2326 2494.1860
## 1160 3155.2326 2494.1860
## 1161 3155.2326 2494.1860
## 1162 3155.2326 2494.1860
## 1163 3155.2326 2494.1860
## 1164 3155.2326 2494.1860
## 1165 3155.2326 2494.1860
## 1166 3155.2326 2494.1860
## 1167 3155.2326 2494.1860
## 1168 3155.2326 2494.1860
## 1169 3155.2326 2494.1860
## 1170 3155.2326 2494.1860
## 1171 3155.2326 2494.1860
## 1172 3155.2326 2494.1860
## 1173 3155.2326 2494.1860
## 1174 3155.2326 2494.1860
## 1175 3155.2326 2494.1860
## 1176 3155.2326 2494.1860
## 1177 7632.5581 1350.0000
## 1178 7632.5581 1350.0000
## 1179 7632.5581 1350.0000
## 1180 7632.5581 1350.0000
## 1181 7632.5581 1350.0000
## 1182 7632.5581 1350.0000
## 1183 7632.5581 1350.0000
## 1184 7632.5581 1350.0000
## 1185 7632.5581 1350.0000
## 1186 7632.5581 1350.0000
## 1187 7632.5581 1350.0000
## 1188 7632.5581 1350.0000
## 1189 7632.5581 1350.0000
## 1190 7632.5581 1350.0000
## 1191 7632.5581 1350.0000
## 1192 7632.5581 1350.0000
## 1193 7632.5581 1350.0000
## 1194 7632.5581 1350.0000
## 1195 7632.5581 1350.0000
## 1196 7632.5581 1350.0000
## 1197 7632.5581 1350.0000
## 1198 7632.5581 1350.0000
## 1199 7632.5581 1350.0000
## 1200 7632.5581 1350.0000
## 1201 3312.2093 282.5581
## 1202 3312.2093 282.5581
## 1203 3312.2093 282.5581
## 1204 3312.2093 282.5581
## 1205 3312.2093 282.5581
## 1206 3312.2093 282.5581
## 1207 3312.2093 282.5581
## 1208 3312.2093 282.5581
## 1209 3312.2093 282.5581
## 1210 3312.2093 282.5581
## 1211 3312.2093 282.5581
## 1212 3312.2093 282.5581
## 1213 3312.2093 282.5581
## 1214 3312.2093 282.5581
## 1215 3312.2093 282.5581
## 1216 3312.2093 282.5581
## 1217 3312.2093 282.5581
## 1218 3312.2093 282.5581
## 1219 3312.2093 282.5581
## 1220 3312.2093 282.5581
## 1221 3312.2093 282.5581
## 1222 3312.2093 282.5581
## 1223 3312.2093 282.5581
## 1224 3312.2093 282.5581
## 1225 5548.2558 0.0000
## 1226 5548.2558 0.0000
## 1227 5548.2558 0.0000
## 1228 5548.2558 0.0000
## 1229 5548.2558 0.0000
## 1230 5548.2558 0.0000
## 1231 5548.2558 0.0000
## 1232 5548.2558 0.0000
## 1233 5548.2558 0.0000
## 1234 5548.2558 0.0000
## 1235 5548.2558 0.0000
## 1236 5548.2558 0.0000
## 1237 5548.2558 0.0000
## 1238 5548.2558 0.0000
## 1239 5548.2558 0.0000
## 1240 5548.2558 0.0000
## 1241 5548.2558 0.0000
## 1242 5548.2558 0.0000
## 1243 5548.2558 0.0000
## 1244 5548.2558 0.0000
## 1245 5548.2558 0.0000
## 1246 5548.2558 0.0000
## 1247 5548.2558 0.0000
## 1248 5548.2558 0.0000
## 1249 4116.2791 0.0000
## 1250 4116.2791 0.0000
## 1251 4116.2791 0.0000
## 1252 4116.2791 0.0000
## 1253 4116.2791 0.0000
## 1254 4116.2791 0.0000
## 1255 4116.2791 0.0000
## 1256 4116.2791 0.0000
## 1257 4116.2791 0.0000
## 1258 4116.2791 0.0000
## 1259 4116.2791 0.0000
## 1260 4116.2791 0.0000
## 1261 4116.2791 0.0000
## 1262 4116.2791 0.0000
## 1263 4116.2791 0.0000
## 1264 4116.2791 0.0000
## 1265 4116.2791 0.0000
## 1266 4116.2791 0.0000
## 1267 4116.2791 0.0000
## 1268 4116.2791 0.0000
## 1269 4116.2791 0.0000
## 1270 4116.2791 0.0000
## 1271 4116.2791 0.0000
## 1272 4116.2791 0.0000
## 1273 1456.3953 0.0000
## 1274 1456.3953 0.0000
## 1275 1456.3953 0.0000
## 1276 1456.3953 0.0000
## 1277 1456.3953 0.0000
## 1278 1456.3953 0.0000
## 1279 1456.3953 0.0000
## 1280 1456.3953 0.0000
## 1281 1456.3953 0.0000
## 1282 1456.3953 0.0000
## 1283 1456.3953 0.0000
## 1284 1456.3953 0.0000
## 1285 1456.3953 0.0000
## 1286 1456.3953 0.0000
## 1287 1456.3953 0.0000
## 1288 1456.3953 0.0000
## 1289 1456.3953 0.0000
## 1290 1456.3953 0.0000
## 1291 1456.3953 0.0000
## 1292 1456.3953 0.0000
## 1293 1456.3953 0.0000
## 1294 1456.3953 0.0000
## 1295 1456.3953 0.0000
## 1296 1456.3953 0.0000
## 1297 1059.5930 0.0000
## 1298 1059.5930 0.0000
## 1299 1059.5930 0.0000
## 1300 1059.5930 0.0000
## 1301 1059.5930 0.0000
## 1302 1059.5930 0.0000
## 1303 1059.5930 0.0000
## 1304 1059.5930 0.0000
## 1305 1059.5930 0.0000
## 1306 1059.5930 0.0000
## 1307 1059.5930 0.0000
## 1308 1059.5930 0.0000
## 1309 1059.5930 0.0000
## 1310 1059.5930 0.0000
## 1311 1059.5930 0.0000
## 1312 1059.5930 0.0000
## 1313 1059.5930 0.0000
## 1314 1059.5930 0.0000
## 1315 1059.5930 0.0000
## 1316 1059.5930 0.0000
## 1317 1059.5930 0.0000
## 1318 1059.5930 0.0000
## 1319 1059.5930 0.0000
## 1320 1059.5930 0.0000
## 1321 1360.4651 545.0581
## 1322 1360.4651 545.0581
## 1323 1360.4651 545.0581
## 1324 1360.4651 545.0581
## 1325 1360.4651 545.0581
## 1326 1360.4651 545.0581
## 1327 1360.4651 545.0581
## 1328 1360.4651 545.0581
## 1329 1360.4651 545.0581
## 1330 1360.4651 545.0581
## 1331 1360.4651 545.0581
## 1332 1360.4651 545.0581
## 1333 1360.4651 545.0581
## 1334 1360.4651 545.0581
## 1335 1360.4651 545.0581
## 1336 1360.4651 545.0581
## 1337 1360.4651 545.0581
## 1338 1360.4651 545.0581
## 1339 1360.4651 545.0581
## 1340 1360.4651 545.0581
## 1341 1360.4651 545.0581
## 1342 1360.4651 545.0581
## 1343 1360.4651 545.0581
## 1344 1360.4651 545.0581
## 1345 3155.2326 2494.1860
## 1346 3155.2326 2494.1860
## 1347 3155.2326 2494.1860
## 1348 3155.2326 2494.1860
## 1349 3155.2326 2494.1860
## 1350 3155.2326 2494.1860
## 1351 3155.2326 2494.1860
## 1352 3155.2326 2494.1860
## 1353 3155.2326 2494.1860
## 1354 3155.2326 2494.1860
## 1355 3155.2326 2494.1860
## 1356 3155.2326 2494.1860
## 1357 3155.2326 2494.1860
## 1358 3155.2326 2494.1860
## 1359 3155.2326 2494.1860
## 1360 3155.2326 2494.1860
## 1361 3155.2326 2494.1860
## 1362 3155.2326 2494.1860
## 1363 3155.2326 2494.1860
## 1364 3155.2326 2494.1860
## 1365 3155.2326 2494.1860
## 1366 3155.2326 2494.1860
## 1367 3155.2326 2494.1860
## 1368 3155.2326 2494.1860
## 1369 1510.4651 2100.0000
## 1370 1510.4651 2100.0000
## 1371 1510.4651 2100.0000
## 1372 1510.4651 2100.0000
## 1373 1510.4651 2100.0000
## 1374 1510.4651 2100.0000
## 1375 1510.4651 2100.0000
## 1376 1510.4651 2100.0000
## 1377 1510.4651 2100.0000
## 1378 1510.4651 2100.0000
## 1379 1510.4651 2100.0000
## 1380 1510.4651 2100.0000
## 1381 1510.4651 2100.0000
## 1382 1510.4651 2100.0000
## 1383 1510.4651 2100.0000
## 1384 1510.4651 2100.0000
## 1385 1510.4651 2100.0000
## 1386 1510.4651 2100.0000
## 1387 1510.4651 2100.0000
## 1388 1510.4651 2100.0000
## 1389 1510.4651 2100.0000
## 1390 1510.4651 2100.0000
## 1391 1510.4651 2100.0000
## 1392 1510.4651 2100.0000
## 1393 6826.7442 526.7442
## 1394 6826.7442 526.7442
## 1395 6826.7442 526.7442
## 1396 6826.7442 526.7442
## 1397 6826.7442 526.7442
## 1398 6826.7442 526.7442
## 1399 6826.7442 526.7442
## 1400 6826.7442 526.7442
## 1401 6826.7442 526.7442
## 1402 6826.7442 526.7442
## 1403 6826.7442 526.7442
## 1404 6826.7442 526.7442
## 1405 6826.7442 526.7442
## 1406 6826.7442 526.7442
## 1407 6826.7442 526.7442
## 1408 6826.7442 526.7442
## 1409 6826.7442 526.7442
## 1410 6826.7442 526.7442
## 1411 6826.7442 526.7442
## 1412 6826.7442 526.7442
## 1413 6826.7442 526.7442
## 1414 6826.7442 526.7442
## 1415 6826.7442 526.7442
## 1416 6826.7442 526.7442
## 1417 4013.3721 837.2093
## 1418 4013.3721 837.2093
## 1419 4013.3721 837.2093
## 1420 4013.3721 837.2093
## 1421 4013.3721 837.2093
## 1422 4013.3721 837.2093
## 1423 4013.3721 837.2093
## 1424 4013.3721 837.2093
## 1425 4013.3721 837.2093
## 1426 4013.3721 837.2093
## 1427 4013.3721 837.2093
## 1428 4013.3721 837.2093
## 1429 4013.3721 837.2093
## 1430 4013.3721 837.2093
## 1431 4013.3721 837.2093
## 1432 4013.3721 837.2093
## 1433 4013.3721 837.2093
## 1434 4013.3721 837.2093
## 1435 4013.3721 837.2093
## 1436 4013.3721 837.2093
## 1437 4013.3721 837.2093
## 1438 4013.3721 837.2093
## 1439 4013.3721 837.2093
## 1440 4013.3721 837.2093
## 1441 1718.0233 0.0000
## 1442 1718.0233 0.0000
## 1443 1718.0233 0.0000
## 1444 1718.0233 0.0000
## 1445 1718.0233 0.0000
## 1446 1718.0233 0.0000
## 1447 1718.0233 0.0000
## 1448 1718.0233 0.0000
## 1449 1718.0233 0.0000
## 1450 1718.0233 0.0000
## 1451 1718.0233 0.0000
## 1452 1718.0233 0.0000
## 1453 1718.0233 0.0000
## 1454 1718.0233 0.0000
## 1455 1718.0233 0.0000
## 1456 1718.0233 0.0000
## 1457 1718.0233 0.0000
## 1458 1718.0233 0.0000
## 1459 1718.0233 0.0000
## 1460 1718.0233 0.0000
## 1461 1718.0233 0.0000
## 1462 1718.0233 0.0000
## 1463 1718.0233 0.0000
## 1464 1718.0233 0.0000
## 1465 383.7209 0.0000
## 1466 383.7209 0.0000
## 1467 383.7209 0.0000
## 1468 383.7209 0.0000
## 1469 383.7209 0.0000
## 1470 383.7209 0.0000
## 1471 383.7209 0.0000
## 1472 383.7209 0.0000
## 1473 383.7209 0.0000
## 1474 383.7209 0.0000
## 1475 383.7209 0.0000
## 1476 383.7209 0.0000
## 1477 383.7209 0.0000
## 1478 383.7209 0.0000
## 1479 383.7209 0.0000
## 1480 383.7209 0.0000
## 1481 383.7209 0.0000
## 1482 383.7209 0.0000
## 1483 383.7209 0.0000
## 1484 383.7209 0.0000
## 1485 383.7209 0.0000
## 1486 383.7209 0.0000
## 1487 383.7209 0.0000
## 1488 383.7209 0.0000
## 1489 0.0000 545.0581
## 1490 0.0000 545.0581
## 1491 0.0000 545.0581
## 1492 0.0000 545.0581
## 1493 0.0000 545.0581
## 1494 0.0000 545.0581
## 1495 0.0000 545.0581
## 1496 0.0000 545.0581
## 1497 0.0000 545.0581
## 1498 0.0000 545.0581
## 1499 0.0000 545.0581
## 1500 0.0000 545.0581
## 1501 0.0000 545.0581
## 1502 0.0000 545.0581
## 1503 0.0000 545.0581
## 1504 0.0000 545.0581
## 1505 0.0000 545.0581
## 1506 0.0000 545.0581
## 1507 0.0000 545.0581
## 1508 0.0000 545.0581
## 1509 0.0000 545.0581
## 1510 0.0000 545.0581
## 1511 0.0000 545.0581
## 1512 0.0000 545.0581
## 1513 4469.4767 1212.2093
## 1514 4469.4767 1212.2093
## 1515 4469.4767 1212.2093
## 1516 4469.4767 1212.2093
## 1517 4469.4767 1212.2093
## 1518 4469.4767 1212.2093
## 1519 4469.4767 1212.2093
## 1520 4469.4767 1212.2093
## 1521 4469.4767 1212.2093
## 1522 4469.4767 1212.2093
## 1523 4469.4767 1212.2093
## 1524 4469.4767 1212.2093
## 1525 4469.4767 1212.2093
## 1526 4469.4767 1212.2093
## 1527 4469.4767 1212.2093
## 1528 4469.4767 1212.2093
## 1529 4469.4767 1212.2093
## 1530 4469.4767 1212.2093
## 1531 4469.4767 1212.2093
## 1532 4469.4767 1212.2093
## 1533 4469.4767 1212.2093
## 1534 4469.4767 1212.2093
## 1535 4469.4767 1212.2093
## 1536 4469.4767 1212.2093
## 1537 3155.2326 2494.1860
## 1538 3155.2326 2494.1860
## 1539 3155.2326 2494.1860
## 1540 3155.2326 2494.1860
## 1541 3155.2326 2494.1860
## 1542 3155.2326 2494.1860
## 1543 3155.2326 2494.1860
## 1544 3155.2326 2494.1860
## 1545 3155.2326 2494.1860
## 1546 3155.2326 2494.1860
## 1547 3155.2326 2494.1860
## 1548 3155.2326 2494.1860
## 1549 3155.2326 2494.1860
## 1550 3155.2326 2494.1860
## 1551 3155.2326 2494.1860
## 1552 3155.2326 2494.1860
## 1553 3155.2326 2494.1860
## 1554 3155.2326 2494.1860
## 1555 3155.2326 2494.1860
## 1556 3155.2326 2494.1860
## 1557 3155.2326 2494.1860
## 1558 3155.2326 2494.1860
## 1559 3155.2326 2494.1860
## 1560 3155.2326 2494.1860
## 1561 1737.2093 129.0698
## 1562 1737.2093 129.0698
## 1563 1737.2093 129.0698
## 1564 1737.2093 129.0698
## 1565 1737.2093 129.0698
## 1566 1737.2093 129.0698
## 1567 1737.2093 129.0698
## 1568 1737.2093 129.0698
## 1569 1737.2093 129.0698
## 1570 1737.2093 129.0698
## 1571 1737.2093 129.0698
## 1572 1737.2093 129.0698
## 1573 1737.2093 129.0698
## 1574 1737.2093 129.0698
## 1575 1737.2093 129.0698
## 1576 1737.2093 129.0698
## 1577 1737.2093 129.0698
## 1578 1737.2093 129.0698
## 1579 1737.2093 129.0698
## 1580 1737.2093 129.0698
## 1581 1737.2093 129.0698
## 1582 1737.2093 129.0698
## 1583 1737.2093 129.0698
## 1584 1737.2093 129.0698
## 1585 8475.0000 282.5581
## 1586 8475.0000 282.5581
## 1587 8475.0000 282.5581
## 1588 8475.0000 282.5581
## 1589 8475.0000 282.5581
## 1590 8475.0000 282.5581
## 1591 8475.0000 282.5581
## 1592 8475.0000 282.5581
## 1593 8475.0000 282.5581
## 1594 8475.0000 282.5581
## 1595 8475.0000 282.5581
## 1596 8475.0000 282.5581
## 1597 8475.0000 282.5581
## 1598 8475.0000 282.5581
## 1599 8475.0000 282.5581
## 1600 8475.0000 282.5581
## 1601 8475.0000 282.5581
## 1602 8475.0000 282.5581
## 1603 8475.0000 282.5581
## 1604 8475.0000 282.5581
## 1605 8475.0000 282.5581
## 1606 8475.0000 282.5581
## 1607 8475.0000 282.5581
## 1608 8475.0000 282.5581
## 1609 1650.0000 0.0000
## 1610 1650.0000 0.0000
## 1611 1650.0000 0.0000
## 1612 1650.0000 0.0000
## 1613 1650.0000 0.0000
## 1614 1650.0000 0.0000
## 1615 1650.0000 0.0000
## 1616 1650.0000 0.0000
## 1617 1650.0000 0.0000
## 1618 1650.0000 0.0000
## 1619 1650.0000 0.0000
## 1620 1650.0000 0.0000
## 1621 1650.0000 0.0000
## 1622 1650.0000 0.0000
## 1623 1650.0000 0.0000
## 1624 1650.0000 0.0000
## 1625 1650.0000 0.0000
## 1626 1650.0000 0.0000
## 1627 1650.0000 0.0000
## 1628 1650.0000 0.0000
## 1629 1650.0000 0.0000
## 1630 1650.0000 0.0000
## 1631 1650.0000 0.0000
## 1632 1650.0000 0.0000
## 1633 5363.3721 0.0000
## 1634 5363.3721 0.0000
## 1635 5363.3721 0.0000
## 1636 5363.3721 0.0000
## 1637 5363.3721 0.0000
## 1638 5363.3721 0.0000
## 1639 5363.3721 0.0000
## 1640 5363.3721 0.0000
## 1641 5363.3721 0.0000
## 1642 5363.3721 0.0000
## 1643 5363.3721 0.0000
## 1644 5363.3721 0.0000
## 1645 5363.3721 0.0000
## 1646 5363.3721 0.0000
## 1647 5363.3721 0.0000
## 1648 5363.3721 0.0000
## 1649 5363.3721 0.0000
## 1650 5363.3721 0.0000
## 1651 5363.3721 0.0000
## 1652 5363.3721 0.0000
## 1653 5363.3721 0.0000
## 1654 5363.3721 0.0000
## 1655 5363.3721 0.0000
## 1656 5363.3721 0.0000
## 1657 0.0000 1090.1163
## 1658 0.0000 1090.1163
## 1659 0.0000 1090.1163
## 1660 0.0000 1090.1163
## 1661 0.0000 1090.1163
## 1662 0.0000 1090.1163
## 1663 0.0000 1090.1163
## 1664 0.0000 1090.1163
## 1665 0.0000 1090.1163
## 1666 0.0000 1090.1163
## 1667 0.0000 1090.1163
## 1668 0.0000 1090.1163
## 1669 0.0000 1090.1163
## 1670 0.0000 1090.1163
## 1671 0.0000 1090.1163
## 1672 0.0000 1090.1163
## 1673 0.0000 1090.1163
## 1674 0.0000 1090.1163
## 1675 0.0000 1090.1163
## 1676 0.0000 1090.1163
## 1677 0.0000 1090.1163
## 1678 0.0000 1090.1163
## 1679 0.0000 1090.1163
## 1680 0.0000 1090.1163
## 1681 1369.1860 545.0581
## 1682 1369.1860 545.0581
## 1683 1369.1860 545.0581
## 1684 1369.1860 545.0581
## 1685 1369.1860 545.0581
## 1686 1369.1860 545.0581
## 1687 1369.1860 545.0581
## 1688 1369.1860 545.0581
## 1689 1369.1860 545.0581
## 1690 1369.1860 545.0581
## 1691 1369.1860 545.0581
## 1692 1369.1860 545.0581
## 1693 1369.1860 545.0581
## 1694 1369.1860 545.0581
## 1695 1369.1860 545.0581
## 1696 1369.1860 545.0581
## 1697 1369.1860 545.0581
## 1698 1369.1860 545.0581
## 1699 1369.1860 545.0581
## 1700 1369.1860 545.0581
## 1701 1369.1860 545.0581
## 1702 1369.1860 545.0581
## 1703 1369.1860 545.0581
## 1704 1369.1860 545.0581
## 1705 170.0581 545.0581
## 1706 170.0581 545.0581
## 1707 170.0581 545.0581
## 1708 170.0581 545.0581
## 1709 170.0581 545.0581
## 1710 170.0581 545.0581
## 1711 170.0581 545.0581
## 1712 170.0581 545.0581
## 1713 170.0581 545.0581
## 1714 170.0581 545.0581
## 1715 170.0581 545.0581
## 1716 170.0581 545.0581
## 1717 170.0581 545.0581
## 1718 170.0581 545.0581
## 1719 170.0581 545.0581
## 1720 170.0581 545.0581
## 1721 170.0581 545.0581
## 1722 170.0581 545.0581
## 1723 170.0581 545.0581
## 1724 170.0581 545.0581
## 1725 170.0581 545.0581
## 1726 170.0581 545.0581
## 1727 170.0581 545.0581
## 1728 170.0581 545.0581
## 1729 3155.2326 2494.1860
## 1730 3155.2326 2494.1860
## 1731 3155.2326 2494.1860
## 1732 3155.2326 2494.1860
## 1733 3155.2326 2494.1860
## 1734 3155.2326 2494.1860
## 1735 3155.2326 2494.1860
## 1736 3155.2326 2494.1860
## 1737 3155.2326 2494.1860
## 1738 3155.2326 2494.1860
## 1739 3155.2326 2494.1860
## 1740 3155.2326 2494.1860
## 1741 3155.2326 2494.1860
## 1742 3155.2326 2494.1860
## 1743 3155.2326 2494.1860
## 1744 3155.2326 2494.1860
## 1745 3155.2326 2494.1860
## 1746 3155.2326 2494.1860
## 1747 3155.2326 2494.1860
## 1748 3155.2326 2494.1860
## 1749 3155.2326 2494.1860
## 1750 3155.2326 2494.1860
## 1751 3155.2326 2494.1860
## 1752 3155.2326 2494.1860
## 1753 6062.7907 2283.1395
## 1754 6062.7907 2283.1395
## 1755 6062.7907 2283.1395
## 1756 6062.7907 2283.1395
## 1757 6062.7907 2283.1395
## 1758 6062.7907 2283.1395
## 1759 6062.7907 2283.1395
## 1760 6062.7907 2283.1395
## 1761 6062.7907 2283.1395
## 1762 6062.7907 2283.1395
## 1763 6062.7907 2283.1395
## 1764 6062.7907 2283.1395
## 1765 6062.7907 2283.1395
## 1766 6062.7907 2283.1395
## 1767 6062.7907 2283.1395
## 1768 6062.7907 2283.1395
## 1769 6062.7907 2283.1395
## 1770 6062.7907 2283.1395
## 1771 6062.7907 2283.1395
## 1772 6062.7907 2283.1395
## 1773 6062.7907 2283.1395
## 1774 6062.7907 2283.1395
## 1775 6062.7907 2283.1395
## 1776 6062.7907 2283.1395
## 1777 5902.3256 282.5581
## 1778 5902.3256 282.5581
## 1779 5902.3256 282.5581
## 1780 5902.3256 282.5581
## 1781 5902.3256 282.5581
## 1782 5902.3256 282.5581
## 1783 5902.3256 282.5581
## 1784 5902.3256 282.5581
## 1785 5902.3256 282.5581
## 1786 5902.3256 282.5581
## 1787 5902.3256 282.5581
## 1788 5902.3256 282.5581
## 1789 5902.3256 282.5581
## 1790 5902.3256 282.5581
## 1791 5902.3256 282.5581
## 1792 5902.3256 282.5581
## 1793 5902.3256 282.5581
## 1794 5902.3256 282.5581
## 1795 5902.3256 282.5581
## 1796 5902.3256 282.5581
## 1797 5902.3256 282.5581
## 1798 5902.3256 282.5581
## 1799 5902.3256 282.5581
## 1800 5902.3256 282.5581
## 1801 5853.4884 0.0000
## 1802 5853.4884 0.0000
## 1803 5853.4884 0.0000
## 1804 5853.4884 0.0000
## 1805 5853.4884 0.0000
## 1806 5853.4884 0.0000
## 1807 5853.4884 0.0000
## 1808 5853.4884 0.0000
## 1809 5853.4884 0.0000
## 1810 5853.4884 0.0000
## 1811 5853.4884 0.0000
## 1812 5853.4884 0.0000
## 1813 5853.4884 0.0000
## 1814 5853.4884 0.0000
## 1815 5853.4884 0.0000
## 1816 5853.4884 0.0000
## 1817 5853.4884 0.0000
## 1818 5853.4884 0.0000
## 1819 5853.4884 0.0000
## 1820 5853.4884 0.0000
## 1821 5853.4884 0.0000
## 1822 5853.4884 0.0000
## 1823 5853.4884 0.0000
## 1824 5853.4884 0.0000
## 1825 3235.4651 1090.1163
## 1826 3235.4651 1090.1163
## 1827 3235.4651 1090.1163
## 1828 3235.4651 1090.1163
## 1829 3235.4651 1090.1163
## 1830 3235.4651 1090.1163
## 1831 3235.4651 1090.1163
## 1832 3235.4651 1090.1163
## 1833 3235.4651 1090.1163
## 1834 3235.4651 1090.1163
## 1835 3235.4651 1090.1163
## 1836 3235.4651 1090.1163
## 1837 3235.4651 1090.1163
## 1838 3235.4651 1090.1163
## 1839 3235.4651 1090.1163
## 1840 3235.4651 1090.1163
## 1841 3235.4651 1090.1163
## 1842 3235.4651 1090.1163
## 1843 3235.4651 1090.1163
## 1844 3235.4651 1090.1163
## 1845 3235.4651 1090.1163
## 1846 3235.4651 1090.1163
## 1847 3235.4651 1090.1163
## 1848 3235.4651 1090.1163
## 1849 2581.3953 1875.0000
## 1850 2581.3953 1875.0000
## 1851 2581.3953 1875.0000
## 1852 2581.3953 1875.0000
## 1853 2581.3953 1875.0000
## 1854 2581.3953 1875.0000
## 1855 2581.3953 1875.0000
## 1856 2581.3953 1875.0000
## 1857 2581.3953 1875.0000
## 1858 2581.3953 1875.0000
## 1859 2581.3953 1875.0000
## 1860 2581.3953 1875.0000
## 1861 2581.3953 1875.0000
## 1862 2581.3953 1875.0000
## 1863 2581.3953 1875.0000
## 1864 2581.3953 1875.0000
## 1865 2581.3953 1875.0000
## 1866 2581.3953 1875.0000
## 1867 2581.3953 1875.0000
## 1868 2581.3953 1875.0000
## 1869 2581.3953 1875.0000
## 1870 2581.3953 1875.0000
## 1871 2581.3953 1875.0000
## 1872 2581.3953 1875.0000
## 1873 1046.5116 1521.8023
## 1874 1046.5116 1521.8023
## 1875 1046.5116 1521.8023
## 1876 1046.5116 1521.8023
## 1877 1046.5116 1521.8023
## 1878 1046.5116 1521.8023
## 1879 1046.5116 1521.8023
## 1880 1046.5116 1521.8023
## 1881 1046.5116 1521.8023
## 1882 1046.5116 1521.8023
## 1883 1046.5116 1521.8023
## 1884 1046.5116 1521.8023
## 1885 1046.5116 1521.8023
## 1886 1046.5116 1521.8023
## 1887 1046.5116 1521.8023
## 1888 1046.5116 1521.8023
## 1889 1046.5116 1521.8023
## 1890 1046.5116 1521.8023
## 1891 1046.5116 1521.8023
## 1892 1046.5116 1521.8023
## 1893 1046.5116 1521.8023
## 1894 1046.5116 1521.8023
## 1895 1046.5116 1521.8023
## 1896 1046.5116 1521.8023
## 1897 1090.1163 545.0581
## 1898 1090.1163 545.0581
## 1899 1090.1163 545.0581
## 1900 1090.1163 545.0581
## 1901 1090.1163 545.0581
## 1902 1090.1163 545.0581
## 1903 1090.1163 545.0581
## 1904 1090.1163 545.0581
## 1905 1090.1163 545.0581
## 1906 1090.1163 545.0581
## 1907 1090.1163 545.0581
## 1908 1090.1163 545.0581
## 1909 1090.1163 545.0581
## 1910 1090.1163 545.0581
## 1911 1090.1163 545.0581
## 1912 1090.1163 545.0581
## 1913 1090.1163 545.0581
## 1914 1090.1163 545.0581
## 1915 1090.1163 545.0581
## 1916 1090.1163 545.0581
## 1917 1090.1163 545.0581
## 1918 1090.1163 545.0581
## 1919 1090.1163 545.0581
## 1920 1090.1163 545.0581
## 1921 3155.2326 2494.1860
## 1922 3155.2326 2494.1860
## 1923 3155.2326 2494.1860
## 1924 3155.2326 2494.1860
## 1925 3155.2326 2494.1860
## 1926 3155.2326 2494.1860
## 1927 3155.2326 2494.1860
## 1928 3155.2326 2494.1860
## 1929 3155.2326 2494.1860
## 1930 3155.2326 2494.1860
## 1931 3155.2326 2494.1860
## 1932 3155.2326 2494.1860
## 1933 3155.2326 2494.1860
## 1934 3155.2326 2494.1860
## 1935 3155.2326 2494.1860
## 1936 3155.2326 2494.1860
## 1937 3155.2326 2494.1860
## 1938 3155.2326 2494.1860
## 1939 3155.2326 2494.1860
## 1940 3155.2326 2494.1860
## 1941 3155.2326 2494.1860
## 1942 3155.2326 2494.1860
## 1943 3155.2326 2494.1860
## 1944 3155.2326 2494.1860
## 1945 3579.0698 0.0000
## 1946 3579.0698 0.0000
## 1947 3579.0698 0.0000
## 1948 3579.0698 0.0000
## 1949 3579.0698 0.0000
## 1950 3579.0698 0.0000
## 1951 3579.0698 0.0000
## 1952 3579.0698 0.0000
## 1953 3579.0698 0.0000
## 1954 3579.0698 0.0000
## 1955 3579.0698 0.0000
## 1956 3579.0698 0.0000
## 1957 3579.0698 0.0000
## 1958 3579.0698 0.0000
## 1959 3579.0698 0.0000
## 1960 3579.0698 0.0000
## 1961 3579.0698 0.0000
## 1962 3579.0698 0.0000
## 1963 3579.0698 0.0000
## 1964 3579.0698 0.0000
## 1965 3579.0698 0.0000
## 1966 3579.0698 0.0000
## 1967 3579.0698 0.0000
## 1968 3579.0698 0.0000
## 1969 1381.3953 0.0000
## 1970 1381.3953 0.0000
## 1971 1381.3953 0.0000
## 1972 1381.3953 0.0000
## 1973 1381.3953 0.0000
## 1974 1381.3953 0.0000
## 1975 1381.3953 0.0000
## 1976 1381.3953 0.0000
## 1977 1381.3953 0.0000
## 1978 1381.3953 0.0000
## 1979 1381.3953 0.0000
## 1980 1381.3953 0.0000
## 1981 1381.3953 0.0000
## 1982 1381.3953 0.0000
## 1983 1381.3953 0.0000
## 1984 1381.3953 0.0000
## 1985 1381.3953 0.0000
## 1986 1381.3953 0.0000
## 1987 1381.3953 0.0000
## 1988 1381.3953 0.0000
## 1989 1381.3953 0.0000
## 1990 1381.3953 0.0000
## 1991 1381.3953 0.0000
## 1992 1381.3953 0.0000
## 1993 5084.3023 0.0000
## 1994 5084.3023 0.0000
## 1995 5084.3023 0.0000
## 1996 5084.3023 0.0000
## 1997 5084.3023 0.0000
## 1998 5084.3023 0.0000
## 1999 5084.3023 0.0000
## 2000 5084.3023 0.0000
## 2001 5084.3023 0.0000
## 2002 5084.3023 0.0000
## 2003 5084.3023 0.0000
## 2004 5084.3023 0.0000
## 2005 5084.3023 0.0000
## 2006 5084.3023 0.0000
## 2007 5084.3023 0.0000
## 2008 5084.3023 0.0000
## 2009 5084.3023 0.0000
## 2010 5084.3023 0.0000
## 2011 5084.3023 0.0000
## 2012 5084.3023 0.0000
## 2013 5084.3023 0.0000
## 2014 5084.3023 0.0000
## 2015 5084.3023 0.0000
## 2016 5084.3023 0.0000
## 2017 5040.6977 0.0000
## 2018 5040.6977 0.0000
## 2019 5040.6977 0.0000
## 2020 5040.6977 0.0000
## 2021 5040.6977 0.0000
## 2022 5040.6977 0.0000
## 2023 5040.6977 0.0000
## 2024 5040.6977 0.0000
## 2025 5040.6977 0.0000
## 2026 5040.6977 0.0000
## 2027 5040.6977 0.0000
## 2028 5040.6977 0.0000
## 2029 5040.6977 0.0000
## 2030 5040.6977 0.0000
## 2031 5040.6977 0.0000
## 2032 5040.6977 0.0000
## 2033 5040.6977 0.0000
## 2034 5040.6977 0.0000
## 2035 5040.6977 0.0000
## 2036 5040.6977 0.0000
## 2037 5040.6977 0.0000
## 2038 5040.6977 0.0000
## 2039 5040.6977 0.0000
## 2040 5040.6977 0.0000
## 2041 2956.3953 0.0000
## 2042 2956.3953 0.0000
## 2043 2956.3953 0.0000
## 2044 2956.3953 0.0000
## 2045 2956.3953 0.0000
## 2046 2956.3953 0.0000
## 2047 2956.3953 0.0000
## 2048 2956.3953 0.0000
## 2049 2956.3953 0.0000
## 2050 2956.3953 0.0000
## 2051 2956.3953 0.0000
## 2052 2956.3953 0.0000
## 2053 2956.3953 0.0000
## 2054 2956.3953 0.0000
## 2055 2956.3953 0.0000
## 2056 2956.3953 0.0000
## 2057 2956.3953 0.0000
## 2058 2956.3953 0.0000
## 2059 2956.3953 0.0000
## 2060 2956.3953 0.0000
## 2061 2956.3953 0.0000
## 2062 2956.3953 0.0000
## 2063 2956.3953 0.0000
## 2064 2956.3953 0.0000
## 2065 662.7907 545.0581
## 2066 662.7907 545.0581
## 2067 662.7907 545.0581
## 2068 662.7907 545.0581
## 2069 662.7907 545.0581
## 2070 662.7907 545.0581
## 2071 662.7907 545.0581
## 2072 662.7907 545.0581
## 2073 662.7907 545.0581
## 2074 662.7907 545.0581
## 2075 662.7907 545.0581
## 2076 662.7907 545.0581
## 2077 662.7907 545.0581
## 2078 662.7907 545.0581
## 2079 662.7907 545.0581
## 2080 662.7907 545.0581
## 2081 662.7907 545.0581
## 2082 662.7907 545.0581
## 2083 662.7907 545.0581
## 2084 662.7907 545.0581
## 2085 662.7907 545.0581
## 2086 662.7907 545.0581
## 2087 662.7907 545.0581
## 2088 662.7907 545.0581
## 2089 2428.7791 1630.8140
## 2090 2428.7791 1630.8140
## 2091 2428.7791 1630.8140
## 2092 2428.7791 1630.8140
## 2093 2428.7791 1630.8140
## 2094 2428.7791 1630.8140
## 2095 2428.7791 1630.8140
## 2096 2428.7791 1630.8140
## 2097 2428.7791 1630.8140
## 2098 2428.7791 1630.8140
## 2099 2428.7791 1630.8140
## 2100 2428.7791 1630.8140
## 2101 2428.7791 1630.8140
## 2102 2428.7791 1630.8140
## 2103 2428.7791 1630.8140
## 2104 2428.7791 1630.8140
## 2105 2428.7791 1630.8140
## 2106 2428.7791 1630.8140
## 2107 2428.7791 1630.8140
## 2108 2428.7791 1630.8140
## 2109 2428.7791 1630.8140
## 2110 2428.7791 1630.8140
## 2111 2428.7791 1630.8140
## 2112 2428.7791 1630.8140
## 2113 3155.2326 2494.1860
## 2114 3155.2326 2494.1860
## 2115 3155.2326 2494.1860
## 2116 3155.2326 2494.1860
## 2117 3155.2326 2494.1860
## 2118 3155.2326 2494.1860
## 2119 3155.2326 2494.1860
## 2120 3155.2326 2494.1860
## 2121 3155.2326 2494.1860
## 2122 3155.2326 2494.1860
## 2123 3155.2326 2494.1860
## 2124 3155.2326 2494.1860
## 2125 3155.2326 2494.1860
## 2126 3155.2326 2494.1860
## 2127 3155.2326 2494.1860
## 2128 3155.2326 2494.1860
## 2129 3155.2326 2494.1860
## 2130 3155.2326 2494.1860
## 2131 3155.2326 2494.1860
## 2132 3155.2326 2494.1860
## 2133 3155.2326 2494.1860
## 2134 3155.2326 2494.1860
## 2135 3155.2326 2494.1860
## 2136 3155.2326 2494.1860
## 2137 7407.5581 1220.9302
## 2138 7407.5581 1220.9302
## 2139 7407.5581 1220.9302
## 2140 7407.5581 1220.9302
## 2141 7407.5581 1220.9302
## 2142 7407.5581 1220.9302
## 2143 7407.5581 1220.9302
## 2144 7407.5581 1220.9302
## 2145 7407.5581 1220.9302
## 2146 7407.5581 1220.9302
## 2147 7407.5581 1220.9302
## 2148 7407.5581 1220.9302
## 2149 7407.5581 1220.9302
## 2150 7407.5581 1220.9302
## 2151 7407.5581 1220.9302
## 2152 7407.5581 1220.9302
## 2153 7407.5581 1220.9302
## 2154 7407.5581 1220.9302
## 2155 7407.5581 1220.9302
## 2156 7407.5581 1220.9302
## 2157 7407.5581 1220.9302
## 2158 7407.5581 1220.9302
## 2159 7407.5581 1220.9302
## 2160 7407.5581 1220.9302
## 2161 3134.3023 0.0000
## 2162 3134.3023 0.0000
## 2163 3134.3023 0.0000
## 2164 3134.3023 0.0000
## 2165 3134.3023 0.0000
## 2166 3134.3023 0.0000
## 2167 3134.3023 0.0000
## 2168 3134.3023 0.0000
## 2169 3134.3023 0.0000
## 2170 3134.3023 0.0000
## 2171 3134.3023 0.0000
## 2172 3134.3023 0.0000
## 2173 3134.3023 0.0000
## 2174 3134.3023 0.0000
## 2175 3134.3023 0.0000
## 2176 3134.3023 0.0000
## 2177 3134.3023 0.0000
## 2178 3134.3023 0.0000
## 2179 3134.3023 0.0000
## 2180 3134.3023 0.0000
## 2181 3134.3023 0.0000
## 2182 3134.3023 0.0000
## 2183 3134.3023 0.0000
## 2184 3134.3023 0.0000
## 2185 4988.3721 0.0000
## 2186 4988.3721 0.0000
## 2187 4988.3721 0.0000
## 2188 4988.3721 0.0000
## 2189 4988.3721 0.0000
## 2190 4988.3721 0.0000
## 2191 4988.3721 0.0000
## 2192 4988.3721 0.0000
## 2193 4988.3721 0.0000
## 2194 4988.3721 0.0000
## 2195 4988.3721 0.0000
## 2196 4988.3721 0.0000
## 2197 4988.3721 0.0000
## 2198 4988.3721 0.0000
## 2199 4988.3721 0.0000
## 2200 4988.3721 0.0000
## 2201 4988.3721 0.0000
## 2202 4988.3721 0.0000
## 2203 4988.3721 0.0000
## 2204 4988.3721 0.0000
## 2205 4988.3721 0.0000
## 2206 4988.3721 0.0000
## 2207 4988.3721 0.0000
## 2208 4988.3721 0.0000
## 2209 4334.3023 0.0000
## 2210 4334.3023 0.0000
## 2211 4334.3023 0.0000
## 2212 4334.3023 0.0000
## 2213 4334.3023 0.0000
## 2214 4334.3023 0.0000
## 2215 4334.3023 0.0000
## 2216 4334.3023 0.0000
## 2217 4334.3023 0.0000
## 2218 4334.3023 0.0000
## 2219 4334.3023 0.0000
## 2220 4334.3023 0.0000
## 2221 4334.3023 0.0000
## 2222 4334.3023 0.0000
## 2223 4334.3023 0.0000
## 2224 4334.3023 0.0000
## 2225 4334.3023 0.0000
## 2226 4334.3023 0.0000
## 2227 4334.3023 0.0000
## 2228 4334.3023 0.0000
## 2229 4334.3023 0.0000
## 2230 4334.3023 0.0000
## 2231 4334.3023 0.0000
## 2232 4334.3023 0.0000
## 2233 1456.3953 0.0000
## 2234 1456.3953 0.0000
## 2235 1456.3953 0.0000
## 2236 1456.3953 0.0000
## 2237 1456.3953 0.0000
## 2238 1456.3953 0.0000
## 2239 1456.3953 0.0000
## 2240 1456.3953 0.0000
## 2241 1456.3953 0.0000
## 2242 1456.3953 0.0000
## 2243 1456.3953 0.0000
## 2244 1456.3953 0.0000
## 2245 1456.3953 0.0000
## 2246 1456.3953 0.0000
## 2247 1456.3953 0.0000
## 2248 1456.3953 0.0000
## 2249 1456.3953 0.0000
## 2250 1456.3953 0.0000
## 2251 1456.3953 0.0000
## 2252 1456.3953 0.0000
## 2253 1456.3953 0.0000
## 2254 1456.3953 0.0000
## 2255 1456.3953 0.0000
## 2256 1456.3953 0.0000
## 2257 1059.5930 0.0000
## 2258 1059.5930 0.0000
## 2259 1059.5930 0.0000
## 2260 1059.5930 0.0000
## 2261 1059.5930 0.0000
## 2262 1059.5930 0.0000
## 2263 1059.5930 0.0000
## 2264 1059.5930 0.0000
## 2265 1059.5930 0.0000
## 2266 1059.5930 0.0000
## 2267 1059.5930 0.0000
## 2268 1059.5930 0.0000
## 2269 1059.5930 0.0000
## 2270 1059.5930 0.0000
## 2271 1059.5930 0.0000
## 2272 1059.5930 0.0000
## 2273 1059.5930 0.0000
## 2274 1059.5930 0.0000
## 2275 1059.5930 0.0000
## 2276 1059.5930 0.0000
## 2277 1059.5930 0.0000
## 2278 1059.5930 0.0000
## 2279 1059.5930 0.0000
## 2280 1059.5930 0.0000
## 2281 1360.4651 545.0581
## 2282 1360.4651 545.0581
## 2283 1360.4651 545.0581
## 2284 1360.4651 545.0581
## 2285 1360.4651 545.0581
## 2286 1360.4651 545.0581
## 2287 1360.4651 545.0581
## 2288 1360.4651 545.0581
## 2289 1360.4651 545.0581
## 2290 1360.4651 545.0581
## 2291 1360.4651 545.0581
## 2292 1360.4651 545.0581
## 2293 1360.4651 545.0581
## 2294 1360.4651 545.0581
## 2295 1360.4651 545.0581
## 2296 1360.4651 545.0581
## 2297 1360.4651 545.0581
## 2298 1360.4651 545.0581
## 2299 1360.4651 545.0581
## 2300 1360.4651 545.0581
## 2301 1360.4651 545.0581
## 2302 1360.4651 545.0581
## 2303 1360.4651 545.0581
## 2304 1360.4651 545.0581
## 2305 3155.2326 2494.1860
## 2306 3155.2326 2494.1860
## 2307 3155.2326 2494.1860
## 2308 3155.2326 2494.1860
## 2309 3155.2326 2494.1860
## 2310 3155.2326 2494.1860
## 2311 3155.2326 2494.1860
## 2312 3155.2326 2494.1860
## 2313 3155.2326 2494.1860
## 2314 3155.2326 2494.1860
## 2315 3155.2326 2494.1860
## 2316 3155.2326 2494.1860
## 2317 3155.2326 2494.1860
## 2318 3155.2326 2494.1860
## 2319 3155.2326 2494.1860
## 2320 3155.2326 2494.1860
## 2321 3155.2326 2494.1860
## 2322 3155.2326 2494.1860
## 2323 3155.2326 2494.1860
## 2324 3155.2326 2494.1860
## 2325 3155.2326 2494.1860
## 2326 3155.2326 2494.1860
## 2327 3155.2326 2494.1860
## 2328 3155.2326 2494.1860
## 2329 1285.4651 1970.9302
## 2330 1285.4651 1970.9302
## 2331 1285.4651 1970.9302
## 2332 1285.4651 1970.9302
## 2333 1285.4651 1970.9302
## 2334 1285.4651 1970.9302
## 2335 1285.4651 1970.9302
## 2336 1285.4651 1970.9302
## 2337 1285.4651 1970.9302
## 2338 1285.4651 1970.9302
## 2339 1285.4651 1970.9302
## 2340 1285.4651 1970.9302
## 2341 1285.4651 1970.9302
## 2342 1285.4651 1970.9302
## 2343 1285.4651 1970.9302
## 2344 1285.4651 1970.9302
## 2345 1285.4651 1970.9302
## 2346 1285.4651 1970.9302
## 2347 1285.4651 1970.9302
## 2348 1285.4651 1970.9302
## 2349 1285.4651 1970.9302
## 2350 1285.4651 1970.9302
## 2351 1285.4651 1970.9302
## 2352 1285.4651 1970.9302
## 2353 6648.8372 244.1860
## 2354 6648.8372 244.1860
## 2355 6648.8372 244.1860
## 2356 6648.8372 244.1860
## 2357 6648.8372 244.1860
## 2358 6648.8372 244.1860
## 2359 6648.8372 244.1860
## 2360 6648.8372 244.1860
## 2361 6648.8372 244.1860
## 2362 6648.8372 244.1860
## 2363 6648.8372 244.1860
## 2364 6648.8372 244.1860
## 2365 6648.8372 244.1860
## 2366 6648.8372 244.1860
## 2367 6648.8372 244.1860
## 2368 6648.8372 244.1860
## 2369 6648.8372 244.1860
## 2370 6648.8372 244.1860
## 2371 6648.8372 244.1860
## 2372 6648.8372 244.1860
## 2373 6648.8372 244.1860
## 2374 6648.8372 244.1860
## 2375 6648.8372 244.1860
## 2376 6648.8372 244.1860
## 2377 3453.4884 837.2093
## 2378 3453.4884 837.2093
## 2379 3453.4884 837.2093
## 2380 3453.4884 837.2093
## 2381 3453.4884 837.2093
## 2382 3453.4884 837.2093
## 2383 3453.4884 837.2093
## 2384 3453.4884 837.2093
## 2385 3453.4884 837.2093
## 2386 3453.4884 837.2093
## 2387 3453.4884 837.2093
## 2388 3453.4884 837.2093
## 2389 3453.4884 837.2093
## 2390 3453.4884 837.2093
## 2391 3453.4884 837.2093
## 2392 3453.4884 837.2093
## 2393 3453.4884 837.2093
## 2394 3453.4884 837.2093
## 2395 3453.4884 837.2093
## 2396 3453.4884 837.2093
## 2397 3453.4884 837.2093
## 2398 3453.4884 837.2093
## 2399 3453.4884 837.2093
## 2400 3453.4884 837.2093
## 2401 1936.0465 0.0000
## 2402 1936.0465 0.0000
## 2403 1936.0465 0.0000
## 2404 1936.0465 0.0000
## 2405 1936.0465 0.0000
## 2406 1936.0465 0.0000
## 2407 1936.0465 0.0000
## 2408 1936.0465 0.0000
## 2409 1936.0465 0.0000
## 2410 1936.0465 0.0000
## 2411 1936.0465 0.0000
## 2412 1936.0465 0.0000
## 2413 1936.0465 0.0000
## 2414 1936.0465 0.0000
## 2415 1936.0465 0.0000
## 2416 1936.0465 0.0000
## 2417 1936.0465 0.0000
## 2418 1936.0465 0.0000
## 2419 1936.0465 0.0000
## 2420 1936.0465 0.0000
## 2421 1936.0465 0.0000
## 2422 1936.0465 0.0000
## 2423 1936.0465 0.0000
## 2424 1936.0465 0.0000
## 2425 383.7209 0.0000
## 2426 383.7209 0.0000
## 2427 383.7209 0.0000
## 2428 383.7209 0.0000
## 2429 383.7209 0.0000
## 2430 383.7209 0.0000
## 2431 383.7209 0.0000
## 2432 383.7209 0.0000
## 2433 383.7209 0.0000
## 2434 383.7209 0.0000
## 2435 383.7209 0.0000
## 2436 383.7209 0.0000
## 2437 383.7209 0.0000
## 2438 383.7209 0.0000
## 2439 383.7209 0.0000
## 2440 383.7209 0.0000
## 2441 383.7209 0.0000
## 2442 383.7209 0.0000
## 2443 383.7209 0.0000
## 2444 383.7209 0.0000
## 2445 383.7209 0.0000
## 2446 383.7209 0.0000
## 2447 383.7209 0.0000
## 2448 383.7209 0.0000
## 2449 0.0000 545.0581
## 2450 0.0000 545.0581
## 2451 0.0000 545.0581
## 2452 0.0000 545.0581
## 2453 0.0000 545.0581
## 2454 0.0000 545.0581
## 2455 0.0000 545.0581
## 2456 0.0000 545.0581
## 2457 0.0000 545.0581
## 2458 0.0000 545.0581
## 2459 0.0000 545.0581
## 2460 0.0000 545.0581
## 2461 0.0000 545.0581
## 2462 0.0000 545.0581
## 2463 0.0000 545.0581
## 2464 0.0000 545.0581
## 2465 0.0000 545.0581
## 2466 0.0000 545.0581
## 2467 0.0000 545.0581
## 2468 0.0000 545.0581
## 2469 0.0000 545.0581
## 2470 0.0000 545.0581
## 2471 0.0000 545.0581
## 2472 0.0000 545.0581
## 2473 4469.4767 1212.2093
## 2474 4469.4767 1212.2093
## 2475 4469.4767 1212.2093
## 2476 4469.4767 1212.2093
## 2477 4469.4767 1212.2093
## 2478 4469.4767 1212.2093
## 2479 4469.4767 1212.2093
## 2480 4469.4767 1212.2093
## 2481 4469.4767 1212.2093
## 2482 4469.4767 1212.2093
## 2483 4469.4767 1212.2093
## 2484 4469.4767 1212.2093
## 2485 4469.4767 1212.2093
## 2486 4469.4767 1212.2093
## 2487 4469.4767 1212.2093
## 2488 4469.4767 1212.2093
## 2489 4469.4767 1212.2093
## 2490 4469.4767 1212.2093
## 2491 4469.4767 1212.2093
## 2492 4469.4767 1212.2093
## 2493 4469.4767 1212.2093
## 2494 4469.4767 1212.2093
## 2495 4469.4767 1212.2093
## 2496 4469.4767 1212.2093
## 2497 3155.2326 2494.1860
## 2498 3155.2326 2494.1860
## 2499 3155.2326 2494.1860
## 2500 3155.2326 2494.1860
## 2501 3155.2326 2494.1860
## 2502 3155.2326 2494.1860
## 2503 3155.2326 2494.1860
## 2504 3155.2326 2494.1860
## 2505 3155.2326 2494.1860
## 2506 3155.2326 2494.1860
## 2507 3155.2326 2494.1860
## 2508 3155.2326 2494.1860
## 2509 3155.2326 2494.1860
## 2510 3155.2326 2494.1860
## 2511 3155.2326 2494.1860
## 2512 3155.2326 2494.1860
## 2513 3155.2326 2494.1860
## 2514 3155.2326 2494.1860
## 2515 3155.2326 2494.1860
## 2516 3155.2326 2494.1860
## 2517 3155.2326 2494.1860
## 2518 3155.2326 2494.1860
## 2519 3155.2326 2494.1860
## 2520 3155.2326 2494.1860
## 2521 1512.2093 0.0000
## 2522 1512.2093 0.0000
## 2523 1512.2093 0.0000
## 2524 1512.2093 0.0000
## 2525 1512.2093 0.0000
## 2526 1512.2093 0.0000
## 2527 1512.2093 0.0000
## 2528 1512.2093 0.0000
## 2529 1512.2093 0.0000
## 2530 1512.2093 0.0000
## 2531 1512.2093 0.0000
## 2532 1512.2093 0.0000
## 2533 1512.2093 0.0000
## 2534 1512.2093 0.0000
## 2535 1512.2093 0.0000
## 2536 1512.2093 0.0000
## 2537 1512.2093 0.0000
## 2538 1512.2093 0.0000
## 2539 1512.2093 0.0000
## 2540 1512.2093 0.0000
## 2541 1512.2093 0.0000
## 2542 1512.2093 0.0000
## 2543 1512.2093 0.0000
## 2544 1512.2093 0.0000
## 2545 8297.0930 0.0000
## 2546 8297.0930 0.0000
## 2547 8297.0930 0.0000
## 2548 8297.0930 0.0000
## 2549 8297.0930 0.0000
## 2550 8297.0930 0.0000
## 2551 8297.0930 0.0000
## 2552 8297.0930 0.0000
## 2553 8297.0930 0.0000
## 2554 8297.0930 0.0000
## 2555 8297.0930 0.0000
## 2556 8297.0930 0.0000
## 2557 8297.0930 0.0000
## 2558 8297.0930 0.0000
## 2559 8297.0930 0.0000
## 2560 8297.0930 0.0000
## 2561 8297.0930 0.0000
## 2562 8297.0930 0.0000
## 2563 8297.0930 0.0000
## 2564 8297.0930 0.0000
## 2565 8297.0930 0.0000
## 2566 8297.0930 0.0000
## 2567 8297.0930 0.0000
## 2568 8297.0930 0.0000
## 2569 1090.1163 0.0000
## 2570 1090.1163 0.0000
## 2571 1090.1163 0.0000
## 2572 1090.1163 0.0000
## 2573 1090.1163 0.0000
## 2574 1090.1163 0.0000
## 2575 1090.1163 0.0000
## 2576 1090.1163 0.0000
## 2577 1090.1163 0.0000
## 2578 1090.1163 0.0000
## 2579 1090.1163 0.0000
## 2580 1090.1163 0.0000
## 2581 1090.1163 0.0000
## 2582 1090.1163 0.0000
## 2583 1090.1163 0.0000
## 2584 1090.1163 0.0000
## 2585 1090.1163 0.0000
## 2586 1090.1163 0.0000
## 2587 1090.1163 0.0000
## 2588 1090.1163 0.0000
## 2589 1090.1163 0.0000
## 2590 1090.1163 0.0000
## 2591 1090.1163 0.0000
## 2592 1090.1163 0.0000
## 2593 5581.3953 0.0000
## 2594 5581.3953 0.0000
## 2595 5581.3953 0.0000
## 2596 5581.3953 0.0000
## 2597 5581.3953 0.0000
## 2598 5581.3953 0.0000
## 2599 5581.3953 0.0000
## 2600 5581.3953 0.0000
## 2601 5581.3953 0.0000
## 2602 5581.3953 0.0000
## 2603 5581.3953 0.0000
## 2604 5581.3953 0.0000
## 2605 5581.3953 0.0000
## 2606 5581.3953 0.0000
## 2607 5581.3953 0.0000
## 2608 5581.3953 0.0000
## 2609 5581.3953 0.0000
## 2610 5581.3953 0.0000
## 2611 5581.3953 0.0000
## 2612 5581.3953 0.0000
## 2613 5581.3953 0.0000
## 2614 5581.3953 0.0000
## 2615 5581.3953 0.0000
## 2616 5581.3953 0.0000
## 2617 0.0000 1090.1163
## 2618 0.0000 1090.1163
## 2619 0.0000 1090.1163
## 2620 0.0000 1090.1163
## 2621 0.0000 1090.1163
## 2622 0.0000 1090.1163
## 2623 0.0000 1090.1163
## 2624 0.0000 1090.1163
## 2625 0.0000 1090.1163
## 2626 0.0000 1090.1163
## 2627 0.0000 1090.1163
## 2628 0.0000 1090.1163
## 2629 0.0000 1090.1163
## 2630 0.0000 1090.1163
## 2631 0.0000 1090.1163
## 2632 0.0000 1090.1163
## 2633 0.0000 1090.1163
## 2634 0.0000 1090.1163
## 2635 0.0000 1090.1163
## 2636 0.0000 1090.1163
## 2637 0.0000 1090.1163
## 2638 0.0000 1090.1163
## 2639 0.0000 1090.1163
## 2640 0.0000 1090.1163
## 2641 1369.1860 545.0581
## 2642 1369.1860 545.0581
## 2643 1369.1860 545.0581
## 2644 1369.1860 545.0581
## 2645 1369.1860 545.0581
## 2646 1369.1860 545.0581
## 2647 1369.1860 545.0581
## 2648 1369.1860 545.0581
## 2649 1369.1860 545.0581
## 2650 1369.1860 545.0581
## 2651 1369.1860 545.0581
## 2652 1369.1860 545.0581
## 2653 1369.1860 545.0581
## 2654 1369.1860 545.0581
## 2655 1369.1860 545.0581
## 2656 1369.1860 545.0581
## 2657 1369.1860 545.0581
## 2658 1369.1860 545.0581
## 2659 1369.1860 545.0581
## 2660 1369.1860 545.0581
## 2661 1369.1860 545.0581
## 2662 1369.1860 545.0581
## 2663 1369.1860 545.0581
## 2664 1369.1860 545.0581
## 2665 170.0581 545.0581
## 2666 170.0581 545.0581
## 2667 170.0581 545.0581
## 2668 170.0581 545.0581
## 2669 170.0581 545.0581
## 2670 170.0581 545.0581
## 2671 170.0581 545.0581
## 2672 170.0581 545.0581
## 2673 170.0581 545.0581
## 2674 170.0581 545.0581
## 2675 170.0581 545.0581
## 2676 170.0581 545.0581
## 2677 170.0581 545.0581
## 2678 170.0581 545.0581
## 2679 170.0581 545.0581
## 2680 170.0581 545.0581
## 2681 170.0581 545.0581
## 2682 170.0581 545.0581
## 2683 170.0581 545.0581
## 2684 170.0581 545.0581
## 2685 170.0581 545.0581
## 2686 170.0581 545.0581
## 2687 170.0581 545.0581
## 2688 170.0581 545.0581
## 2689 3155.2326 2494.1860
## 2690 3155.2326 2494.1860
## 2691 3155.2326 2494.1860
## 2692 3155.2326 2494.1860
## 2693 3155.2326 2494.1860
## 2694 3155.2326 2494.1860
## 2695 3155.2326 2494.1860
## 2696 3155.2326 2494.1860
## 2697 3155.2326 2494.1860
## 2698 3155.2326 2494.1860
## 2699 3155.2326 2494.1860
## 2700 3155.2326 2494.1860
## 2701 3155.2326 2494.1860
## 2702 3155.2326 2494.1860
## 2703 3155.2326 2494.1860
## 2704 3155.2326 2494.1860
## 2705 3155.2326 2494.1860
## 2706 3155.2326 2494.1860
## 2707 3155.2326 2494.1860
## 2708 3155.2326 2494.1860
## 2709 3155.2326 2494.1860
## 2710 3155.2326 2494.1860
## 2711 3155.2326 2494.1860
## 2712 3155.2326 2494.1860
## 2713 5837.7907 2154.0698
## 2714 5837.7907 2154.0698
## 2715 5837.7907 2154.0698
## 2716 5837.7907 2154.0698
## 2717 5837.7907 2154.0698
## 2718 5837.7907 2154.0698
## 2719 5837.7907 2154.0698
## 2720 5837.7907 2154.0698
## 2721 5837.7907 2154.0698
## 2722 5837.7907 2154.0698
## 2723 5837.7907 2154.0698
## 2724 5837.7907 2154.0698
## 2725 5837.7907 2154.0698
## 2726 5837.7907 2154.0698
## 2727 5837.7907 2154.0698
## 2728 5837.7907 2154.0698
## 2729 5837.7907 2154.0698
## 2730 5837.7907 2154.0698
## 2731 5837.7907 2154.0698
## 2732 5837.7907 2154.0698
## 2733 5837.7907 2154.0698
## 2734 5837.7907 2154.0698
## 2735 5837.7907 2154.0698
## 2736 5837.7907 2154.0698
## 2737 5724.4186 0.0000
## 2738 5724.4186 0.0000
## 2739 5724.4186 0.0000
## 2740 5724.4186 0.0000
## 2741 5724.4186 0.0000
## 2742 5724.4186 0.0000
## 2743 5724.4186 0.0000
## 2744 5724.4186 0.0000
## 2745 5724.4186 0.0000
## 2746 5724.4186 0.0000
## 2747 5724.4186 0.0000
## 2748 5724.4186 0.0000
## 2749 5724.4186 0.0000
## 2750 5724.4186 0.0000
## 2751 5724.4186 0.0000
## 2752 5724.4186 0.0000
## 2753 5724.4186 0.0000
## 2754 5724.4186 0.0000
## 2755 5724.4186 0.0000
## 2756 5724.4186 0.0000
## 2757 5724.4186 0.0000
## 2758 5724.4186 0.0000
## 2759 5724.4186 0.0000
## 2760 5724.4186 0.0000
## 2761 5293.6047 0.0000
## 2762 5293.6047 0.0000
## 2763 5293.6047 0.0000
## 2764 5293.6047 0.0000
## 2765 5293.6047 0.0000
## 2766 5293.6047 0.0000
## 2767 5293.6047 0.0000
## 2768 5293.6047 0.0000
## 2769 5293.6047 0.0000
## 2770 5293.6047 0.0000
## 2771 5293.6047 0.0000
## 2772 5293.6047 0.0000
## 2773 5293.6047 0.0000
## 2774 5293.6047 0.0000
## 2775 5293.6047 0.0000
## 2776 5293.6047 0.0000
## 2777 5293.6047 0.0000
## 2778 5293.6047 0.0000
## 2779 5293.6047 0.0000
## 2780 5293.6047 0.0000
## 2781 5293.6047 0.0000
## 2782 5293.6047 0.0000
## 2783 5293.6047 0.0000
## 2784 5293.6047 0.0000
## 2785 3453.4884 1090.1163
## 2786 3453.4884 1090.1163
## 2787 3453.4884 1090.1163
## 2788 3453.4884 1090.1163
## 2789 3453.4884 1090.1163
## 2790 3453.4884 1090.1163
## 2791 3453.4884 1090.1163
## 2792 3453.4884 1090.1163
## 2793 3453.4884 1090.1163
## 2794 3453.4884 1090.1163
## 2795 3453.4884 1090.1163
## 2796 3453.4884 1090.1163
## 2797 3453.4884 1090.1163
## 2798 3453.4884 1090.1163
## 2799 3453.4884 1090.1163
## 2800 3453.4884 1090.1163
## 2801 3453.4884 1090.1163
## 2802 3453.4884 1090.1163
## 2803 3453.4884 1090.1163
## 2804 3453.4884 1090.1163
## 2805 3453.4884 1090.1163
## 2806 3453.4884 1090.1163
## 2807 3453.4884 1090.1163
## 2808 3453.4884 1090.1163
## 2809 2581.3953 1875.0000
## 2810 2581.3953 1875.0000
## 2811 2581.3953 1875.0000
## 2812 2581.3953 1875.0000
## 2813 2581.3953 1875.0000
## 2814 2581.3953 1875.0000
## 2815 2581.3953 1875.0000
## 2816 2581.3953 1875.0000
## 2817 2581.3953 1875.0000
## 2818 2581.3953 1875.0000
## 2819 2581.3953 1875.0000
## 2820 2581.3953 1875.0000
## 2821 2581.3953 1875.0000
## 2822 2581.3953 1875.0000
## 2823 2581.3953 1875.0000
## 2824 2581.3953 1875.0000
## 2825 2581.3953 1875.0000
## 2826 2581.3953 1875.0000
## 2827 2581.3953 1875.0000
## 2828 2581.3953 1875.0000
## 2829 2581.3953 1875.0000
## 2830 2581.3953 1875.0000
## 2831 2581.3953 1875.0000
## 2832 2581.3953 1875.0000
## 2833 1046.5116 1521.8023
## 2834 1046.5116 1521.8023
## 2835 1046.5116 1521.8023
## 2836 1046.5116 1521.8023
## 2837 1046.5116 1521.8023
## 2838 1046.5116 1521.8023
## 2839 1046.5116 1521.8023
## 2840 1046.5116 1521.8023
## 2841 1046.5116 1521.8023
## 2842 1046.5116 1521.8023
## 2843 1046.5116 1521.8023
## 2844 1046.5116 1521.8023
## 2845 1046.5116 1521.8023
## 2846 1046.5116 1521.8023
## 2847 1046.5116 1521.8023
## 2848 1046.5116 1521.8023
## 2849 1046.5116 1521.8023
## 2850 1046.5116 1521.8023
## 2851 1046.5116 1521.8023
## 2852 1046.5116 1521.8023
## 2853 1046.5116 1521.8023
## 2854 1046.5116 1521.8023
## 2855 1046.5116 1521.8023
## 2856 1046.5116 1521.8023
## 2857 1090.1163 545.0581
## 2858 1090.1163 545.0581
## 2859 1090.1163 545.0581
## 2860 1090.1163 545.0581
## 2861 1090.1163 545.0581
## 2862 1090.1163 545.0581
## 2863 1090.1163 545.0581
## 2864 1090.1163 545.0581
## 2865 1090.1163 545.0581
## 2866 1090.1163 545.0581
## 2867 1090.1163 545.0581
## 2868 1090.1163 545.0581
## 2869 1090.1163 545.0581
## 2870 1090.1163 545.0581
## 2871 1090.1163 545.0581
## 2872 1090.1163 545.0581
## 2873 1090.1163 545.0581
## 2874 1090.1163 545.0581
## 2875 1090.1163 545.0581
## 2876 1090.1163 545.0581
## 2877 1090.1163 545.0581
## 2878 1090.1163 545.0581
## 2879 1090.1163 545.0581
## 2880 1090.1163 545.0581
## 2881 3155.2326 2494.1860
## 2882 3155.2326 2494.1860
## 2883 3155.2326 2494.1860
## 2884 3155.2326 2494.1860
## 2885 3155.2326 2494.1860
## 2886 3155.2326 2494.1860
## 2887 3155.2326 2494.1860
## 2888 3155.2326 2494.1860
## 2889 3155.2326 2494.1860
## 2890 3155.2326 2494.1860
## 2891 3155.2326 2494.1860
## 2892 3155.2326 2494.1860
## 2893 3155.2326 2494.1860
## 2894 3155.2326 2494.1860
## 2895 3155.2326 2494.1860
## 2896 3155.2326 2494.1860
## 2897 3155.2326 2494.1860
## 2898 3155.2326 2494.1860
## 2899 3155.2326 2494.1860
## 2900 3155.2326 2494.1860
## 2901 3155.2326 2494.1860
## 2902 3155.2326 2494.1860
## 2903 3155.2326 2494.1860
## 2904 3155.2326 2494.1860
## 2905 3811.0465 0.0000
## 2906 3811.0465 0.0000
## 2907 3811.0465 0.0000
## 2908 3811.0465 0.0000
## 2909 3811.0465 0.0000
## 2910 3811.0465 0.0000
## 2911 3811.0465 0.0000
## 2912 3811.0465 0.0000
## 2913 3811.0465 0.0000
## 2914 3811.0465 0.0000
## 2915 3811.0465 0.0000
## 2916 3811.0465 0.0000
## 2917 3811.0465 0.0000
## 2918 3811.0465 0.0000
## 2919 3811.0465 0.0000
## 2920 3811.0465 0.0000
## 2921 3811.0465 0.0000
## 2922 3811.0465 0.0000
## 2923 3811.0465 0.0000
## 2924 3811.0465 0.0000
## 2925 3811.0465 0.0000
## 2926 3811.0465 0.0000
## 2927 3811.0465 0.0000
## 2928 3811.0465 0.0000
## 2929 1887.2093 218.0233
## 2930 1887.2093 218.0233
## 2931 1887.2093 218.0233
## 2932 1887.2093 218.0233
## 2933 1887.2093 218.0233
## 2934 1887.2093 218.0233
## 2935 1887.2093 218.0233
## 2936 1887.2093 218.0233
## 2937 1887.2093 218.0233
## 2938 1887.2093 218.0233
## 2939 1887.2093 218.0233
## 2940 1887.2093 218.0233
## 2941 1887.2093 218.0233
## 2942 1887.2093 218.0233
## 2943 1887.2093 218.0233
## 2944 1887.2093 218.0233
## 2945 1887.2093 218.0233
## 2946 1887.2093 218.0233
## 2947 1887.2093 218.0233
## 2948 1887.2093 218.0233
## 2949 1887.2093 218.0233
## 2950 1887.2093 218.0233
## 2951 1887.2093 218.0233
## 2952 1887.2093 218.0233
## 2953 5084.3023 0.0000
## 2954 5084.3023 0.0000
## 2955 5084.3023 0.0000
## 2956 5084.3023 0.0000
## 2957 5084.3023 0.0000
## 2958 5084.3023 0.0000
## 2959 5084.3023 0.0000
## 2960 5084.3023 0.0000
## 2961 5084.3023 0.0000
## 2962 5084.3023 0.0000
## 2963 5084.3023 0.0000
## 2964 5084.3023 0.0000
## 2965 5084.3023 0.0000
## 2966 5084.3023 0.0000
## 2967 5084.3023 0.0000
## 2968 5084.3023 0.0000
## 2969 5084.3023 0.0000
## 2970 5084.3023 0.0000
## 2971 5084.3023 0.0000
## 2972 5084.3023 0.0000
## 2973 5084.3023 0.0000
## 2974 5084.3023 0.0000
## 2975 5084.3023 0.0000
## 2976 5084.3023 0.0000
## 2977 4822.6744 0.0000
## 2978 4822.6744 0.0000
## 2979 4822.6744 0.0000
## 2980 4822.6744 0.0000
## 2981 4822.6744 0.0000
## 2982 4822.6744 0.0000
## 2983 4822.6744 0.0000
## 2984 4822.6744 0.0000
## 2985 4822.6744 0.0000
## 2986 4822.6744 0.0000
## 2987 4822.6744 0.0000
## 2988 4822.6744 0.0000
## 2989 4822.6744 0.0000
## 2990 4822.6744 0.0000
## 2991 4822.6744 0.0000
## 2992 4822.6744 0.0000
## 2993 4822.6744 0.0000
## 2994 4822.6744 0.0000
## 2995 4822.6744 0.0000
## 2996 4822.6744 0.0000
## 2997 4822.6744 0.0000
## 2998 4822.6744 0.0000
## 2999 4822.6744 0.0000
## 3000 4822.6744 0.0000
## 3001 3174.4186 0.0000
## 3002 3174.4186 0.0000
## 3003 3174.4186 0.0000
## 3004 3174.4186 0.0000
## 3005 3174.4186 0.0000
## 3006 3174.4186 0.0000
## 3007 3174.4186 0.0000
## 3008 3174.4186 0.0000
## 3009 3174.4186 0.0000
## 3010 3174.4186 0.0000
## 3011 3174.4186 0.0000
## 3012 3174.4186 0.0000
## 3013 3174.4186 0.0000
## 3014 3174.4186 0.0000
## 3015 3174.4186 0.0000
## 3016 3174.4186 0.0000
## 3017 3174.4186 0.0000
## 3018 3174.4186 0.0000
## 3019 3174.4186 0.0000
## 3020 3174.4186 0.0000
## 3021 3174.4186 0.0000
## 3022 3174.4186 0.0000
## 3023 3174.4186 0.0000
## 3024 3174.4186 0.0000
## 3025 662.7907 545.0581
## 3026 662.7907 545.0581
## 3027 662.7907 545.0581
## 3028 662.7907 545.0581
## 3029 662.7907 545.0581
## 3030 662.7907 545.0581
## 3031 662.7907 545.0581
## 3032 662.7907 545.0581
## 3033 662.7907 545.0581
## 3034 662.7907 545.0581
## 3035 662.7907 545.0581
## 3036 662.7907 545.0581
## 3037 662.7907 545.0581
## 3038 662.7907 545.0581
## 3039 662.7907 545.0581
## 3040 662.7907 545.0581
## 3041 662.7907 545.0581
## 3042 662.7907 545.0581
## 3043 662.7907 545.0581
## 3044 662.7907 545.0581
## 3045 662.7907 545.0581
## 3046 662.7907 545.0581
## 3047 662.7907 545.0581
## 3048 662.7907 545.0581
## 3049 2646.8023 1630.8140
## 3050 2646.8023 1630.8140
## 3051 2646.8023 1630.8140
## 3052 2646.8023 1630.8140
## 3053 2646.8023 1630.8140
## 3054 2646.8023 1630.8140
## 3055 2646.8023 1630.8140
## 3056 2646.8023 1630.8140
## 3057 2646.8023 1630.8140
## 3058 2646.8023 1630.8140
## 3059 2646.8023 1630.8140
## 3060 2646.8023 1630.8140
## 3061 2646.8023 1630.8140
## 3062 2646.8023 1630.8140
## 3063 2646.8023 1630.8140
## 3064 2646.8023 1630.8140
## 3065 2646.8023 1630.8140
## 3066 2646.8023 1630.8140
## 3067 2646.8023 1630.8140
## 3068 2646.8023 1630.8140
## 3069 2646.8023 1630.8140
## 3070 2646.8023 1630.8140
## 3071 2646.8023 1630.8140
## 3072 2646.8023 1630.8140
## 3073 3155.2326 2494.1860
## 3074 3155.2326 2494.1860
## 3075 3155.2326 2494.1860
## 3076 3155.2326 2494.1860
## 3077 3155.2326 2494.1860
## 3078 3155.2326 2494.1860
## 3079 3155.2326 2494.1860
## 3080 3155.2326 2494.1860
## 3081 3155.2326 2494.1860
## 3082 3155.2326 2494.1860
## 3083 3155.2326 2494.1860
## 3084 3155.2326 2494.1860
## 3085 3155.2326 2494.1860
## 3086 3155.2326 2494.1860
## 3087 3155.2326 2494.1860
## 3088 3155.2326 2494.1860
## 3089 3155.2326 2494.1860
## 3090 3155.2326 2494.1860
## 3091 3155.2326 2494.1860
## 3092 3155.2326 2494.1860
## 3093 3155.2326 2494.1860
## 3094 3155.2326 2494.1860
## 3095 3155.2326 2494.1860
## 3096 3155.2326 2494.1860
## 3097 7639.5349 1220.9302
## 3098 7639.5349 1220.9302
## 3099 7639.5349 1220.9302
## 3100 7639.5349 1220.9302
## 3101 7639.5349 1220.9302
## 3102 7639.5349 1220.9302
## 3103 7639.5349 1220.9302
## 3104 7639.5349 1220.9302
## 3105 7639.5349 1220.9302
## 3106 7639.5349 1220.9302
## 3107 7639.5349 1220.9302
## 3108 7639.5349 1220.9302
## 3109 7639.5349 1220.9302
## 3110 7639.5349 1220.9302
## 3111 7639.5349 1220.9302
## 3112 7639.5349 1220.9302
## 3113 7639.5349 1220.9302
## 3114 7639.5349 1220.9302
## 3115 7639.5349 1220.9302
## 3116 7639.5349 1220.9302
## 3117 7639.5349 1220.9302
## 3118 7639.5349 1220.9302
## 3119 7639.5349 1220.9302
## 3120 7639.5349 1220.9302
## 3121 3640.1163 218.0233
## 3122 3640.1163 218.0233
## 3123 3640.1163 218.0233
## 3124 3640.1163 218.0233
## 3125 3640.1163 218.0233
## 3126 3640.1163 218.0233
## 3127 3640.1163 218.0233
## 3128 3640.1163 218.0233
## 3129 3640.1163 218.0233
## 3130 3640.1163 218.0233
## 3131 3640.1163 218.0233
## 3132 3640.1163 218.0233
## 3133 3640.1163 218.0233
## 3134 3640.1163 218.0233
## 3135 3640.1163 218.0233
## 3136 3640.1163 218.0233
## 3137 3640.1163 218.0233
## 3138 3640.1163 218.0233
## 3139 3640.1163 218.0233
## 3140 3640.1163 218.0233
## 3141 3640.1163 218.0233
## 3142 3640.1163 218.0233
## 3143 3640.1163 218.0233
## 3144 3640.1163 218.0233
## 3145 4988.3721 0.0000
## 3146 4988.3721 0.0000
## 3147 4988.3721 0.0000
## 3148 4988.3721 0.0000
## 3149 4988.3721 0.0000
## 3150 4988.3721 0.0000
## 3151 4988.3721 0.0000
## 3152 4988.3721 0.0000
## 3153 4988.3721 0.0000
## 3154 4988.3721 0.0000
## 3155 4988.3721 0.0000
## 3156 4988.3721 0.0000
## 3157 4988.3721 0.0000
## 3158 4988.3721 0.0000
## 3159 4988.3721 0.0000
## 3160 4988.3721 0.0000
## 3161 4988.3721 0.0000
## 3162 4988.3721 0.0000
## 3163 4988.3721 0.0000
## 3164 4988.3721 0.0000
## 3165 4988.3721 0.0000
## 3166 4988.3721 0.0000
## 3167 4988.3721 0.0000
## 3168 4988.3721 0.0000
## 3169 4116.2791 0.0000
## 3170 4116.2791 0.0000
## 3171 4116.2791 0.0000
## 3172 4116.2791 0.0000
## 3173 4116.2791 0.0000
## 3174 4116.2791 0.0000
## 3175 4116.2791 0.0000
## 3176 4116.2791 0.0000
## 3177 4116.2791 0.0000
## 3178 4116.2791 0.0000
## 3179 4116.2791 0.0000
## 3180 4116.2791 0.0000
## 3181 4116.2791 0.0000
## 3182 4116.2791 0.0000
## 3183 4116.2791 0.0000
## 3184 4116.2791 0.0000
## 3185 4116.2791 0.0000
## 3186 4116.2791 0.0000
## 3187 4116.2791 0.0000
## 3188 4116.2791 0.0000
## 3189 4116.2791 0.0000
## 3190 4116.2791 0.0000
## 3191 4116.2791 0.0000
## 3192 4116.2791 0.0000
## 3193 1674.4186 0.0000
## 3194 1674.4186 0.0000
## 3195 1674.4186 0.0000
## 3196 1674.4186 0.0000
## 3197 1674.4186 0.0000
## 3198 1674.4186 0.0000
## 3199 1674.4186 0.0000
## 3200 1674.4186 0.0000
## 3201 1674.4186 0.0000
## 3202 1674.4186 0.0000
## 3203 1674.4186 0.0000
## 3204 1674.4186 0.0000
## 3205 1674.4186 0.0000
## 3206 1674.4186 0.0000
## 3207 1674.4186 0.0000
## 3208 1674.4186 0.0000
## 3209 1674.4186 0.0000
## 3210 1674.4186 0.0000
## 3211 1674.4186 0.0000
## 3212 1674.4186 0.0000
## 3213 1674.4186 0.0000
## 3214 1674.4186 0.0000
## 3215 1674.4186 0.0000
## 3216 1674.4186 0.0000
## 3217 1059.5930 0.0000
## 3218 1059.5930 0.0000
## 3219 1059.5930 0.0000
## 3220 1059.5930 0.0000
## 3221 1059.5930 0.0000
## 3222 1059.5930 0.0000
## 3223 1059.5930 0.0000
## 3224 1059.5930 0.0000
## 3225 1059.5930 0.0000
## total_metaecosystem_Pau_indiv total_metaecosystem_Pca_indiv
## 1 5161.0465 883.43023
## 2 5161.0465 883.43023
## 3 5161.0465 883.43023
## 4 5161.0465 883.43023
## 5 5161.0465 883.43023
## 6 5161.0465 883.43023
## 7 5161.0465 883.43023
## 8 5161.0465 883.43023
## 9 5161.0465 883.43023
## 10 5161.0465 883.43023
## 11 5161.0465 883.43023
## 12 5161.0465 883.43023
## 13 5161.0465 883.43023
## 14 5161.0465 883.43023
## 15 5161.0465 883.43023
## 16 5161.0465 883.43023
## 17 5161.0465 883.43023
## 18 5161.0465 883.43023
## 19 5161.0465 883.43023
## 20 5161.0465 883.43023
## 21 5161.0465 883.43023
## 22 5161.0465 883.43023
## 23 5161.0465 883.43023
## 24 5161.0465 883.43023
## 25 0.0000 1854.06977
## 26 0.0000 1854.06977
## 27 0.0000 1854.06977
## 28 0.0000 1854.06977
## 29 0.0000 1854.06977
## 30 0.0000 1854.06977
## 31 0.0000 1854.06977
## 32 0.0000 1854.06977
## 33 0.0000 1854.06977
## 34 0.0000 1854.06977
## 35 0.0000 1854.06977
## 36 0.0000 1854.06977
## 37 0.0000 1854.06977
## 38 0.0000 1854.06977
## 39 0.0000 1854.06977
## 40 0.0000 1854.06977
## 41 0.0000 1854.06977
## 42 0.0000 1854.06977
## 43 0.0000 1854.06977
## 44 0.0000 1854.06977
## 45 0.0000 1854.06977
## 46 0.0000 1854.06977
## 47 0.0000 1854.06977
## 48 0.0000 1854.06977
## 49 1970.9302 1189.53488
## 50 1970.9302 1189.53488
## 51 1970.9302 1189.53488
## 52 1970.9302 1189.53488
## 53 1970.9302 1189.53488
## 54 1970.9302 1189.53488
## 55 1970.9302 1189.53488
## 56 1970.9302 1189.53488
## 57 1970.9302 1189.53488
## 58 1970.9302 1189.53488
## 59 1970.9302 1189.53488
## 60 1970.9302 1189.53488
## 61 1970.9302 1189.53488
## 62 1970.9302 1189.53488
## 63 1970.9302 1189.53488
## 64 1970.9302 1189.53488
## 65 1970.9302 1189.53488
## 66 1970.9302 1189.53488
## 67 1970.9302 1189.53488
## 68 1970.9302 1189.53488
## 69 1970.9302 1189.53488
## 70 1970.9302 1189.53488
## 71 1970.9302 1189.53488
## 72 1970.9302 1189.53488
## 73 1369.1860 3783.13953
## 74 1369.1860 3783.13953
## 75 1369.1860 3783.13953
## 76 1369.1860 3783.13953
## 77 1369.1860 3783.13953
## 78 1369.1860 3783.13953
## 79 1369.1860 3783.13953
## 80 1369.1860 3783.13953
## 81 1369.1860 3783.13953
## 82 1369.1860 3783.13953
## 83 1369.1860 3783.13953
## 84 1369.1860 3783.13953
## 85 1369.1860 3783.13953
## 86 1369.1860 3783.13953
## 87 1369.1860 3783.13953
## 88 1369.1860 3783.13953
## 89 1369.1860 3783.13953
## 90 1369.1860 3783.13953
## 91 1369.1860 3783.13953
## 92 1369.1860 3783.13953
## 93 1369.1860 3783.13953
## 94 1369.1860 3783.13953
## 95 1369.1860 3783.13953
## 96 1369.1860 3783.13953
## 97 2776.7442 1709.30233
## 98 2776.7442 1709.30233
## 99 2776.7442 1709.30233
## 100 2776.7442 1709.30233
## 101 2776.7442 1709.30233
## 102 2776.7442 1709.30233
## 103 2776.7442 1709.30233
## 104 2776.7442 1709.30233
## 105 2776.7442 1709.30233
## 106 2776.7442 1709.30233
## 107 2776.7442 1709.30233
## 108 2776.7442 1709.30233
## 109 2776.7442 1709.30233
## 110 2776.7442 1709.30233
## 111 2776.7442 1709.30233
## 112 2776.7442 1709.30233
## 113 2776.7442 1709.30233
## 114 2776.7442 1709.30233
## 115 2776.7442 1709.30233
## 116 2776.7442 1709.30233
## 117 2776.7442 1709.30233
## 118 2776.7442 1709.30233
## 119 2776.7442 1709.30233
## 120 2776.7442 1709.30233
## 121 559.8837 540.69767
## 122 559.8837 540.69767
## 123 559.8837 540.69767
## 124 559.8837 540.69767
## 125 559.8837 540.69767
## 126 559.8837 540.69767
## 127 559.8837 540.69767
## 128 559.8837 540.69767
## 129 559.8837 540.69767
## 130 559.8837 540.69767
## 131 559.8837 540.69767
## 132 559.8837 540.69767
## 133 559.8837 540.69767
## 134 559.8837 540.69767
## 135 559.8837 540.69767
## 136 559.8837 540.69767
## 137 559.8837 540.69767
## 138 559.8837 540.69767
## 139 559.8837 540.69767
## 140 559.8837 540.69767
## 141 559.8837 540.69767
## 142 559.8837 540.69767
## 143 559.8837 540.69767
## 144 559.8837 540.69767
## 145 109.0116 1181.68605
## 146 109.0116 1181.68605
## 147 109.0116 1181.68605
## 148 109.0116 1181.68605
## 149 109.0116 1181.68605
## 150 109.0116 1181.68605
## 151 109.0116 1181.68605
## 152 109.0116 1181.68605
## 153 109.0116 1181.68605
## 154 109.0116 1181.68605
## 155 109.0116 1181.68605
## 156 109.0116 1181.68605
## 157 109.0116 1181.68605
## 158 109.0116 1181.68605
## 159 109.0116 1181.68605
## 160 109.0116 1181.68605
## 161 109.0116 1181.68605
## 162 109.0116 1181.68605
## 163 109.0116 1181.68605
## 164 109.0116 1181.68605
## 165 109.0116 1181.68605
## 166 109.0116 1181.68605
## 167 109.0116 1181.68605
## 168 109.0116 1181.68605
## 169 531.9767 1063.95349
## 170 531.9767 1063.95349
## 171 531.9767 1063.95349
## 172 531.9767 1063.95349
## 173 531.9767 1063.95349
## 174 531.9767 1063.95349
## 175 531.9767 1063.95349
## 176 531.9767 1063.95349
## 177 531.9767 1063.95349
## 178 531.9767 1063.95349
## 179 531.9767 1063.95349
## 180 531.9767 1063.95349
## 181 531.9767 1063.95349
## 182 531.9767 1063.95349
## 183 531.9767 1063.95349
## 184 531.9767 1063.95349
## 185 531.9767 1063.95349
## 186 531.9767 1063.95349
## 187 531.9767 1063.95349
## 188 531.9767 1063.95349
## 189 531.9767 1063.95349
## 190 531.9767 1063.95349
## 191 531.9767 1063.95349
## 192 531.9767 1063.95349
## 193 5161.0465 883.43023
## 194 5161.0465 883.43023
## 195 5161.0465 883.43023
## 196 5161.0465 883.43023
## 197 5161.0465 883.43023
## 198 5161.0465 883.43023
## 199 5161.0465 883.43023
## 200 5161.0465 883.43023
## 201 5161.0465 883.43023
## 202 5161.0465 883.43023
## 203 5161.0465 883.43023
## 204 5161.0465 883.43023
## 205 5161.0465 883.43023
## 206 5161.0465 883.43023
## 207 5161.0465 883.43023
## 208 5161.0465 883.43023
## 209 5161.0465 883.43023
## 210 5161.0465 883.43023
## 211 5161.0465 883.43023
## 212 5161.0465 883.43023
## 213 5161.0465 883.43023
## 214 5161.0465 883.43023
## 215 5161.0465 883.43023
## 216 5161.0465 883.43023
## 217 5720.9302 5708.72093
## 218 5720.9302 5708.72093
## 219 5720.9302 5708.72093
## 220 5720.9302 5708.72093
## 221 5720.9302 5708.72093
## 222 5720.9302 5708.72093
## 223 5720.9302 5708.72093
## 224 5720.9302 5708.72093
## 225 5720.9302 5708.72093
## 226 5720.9302 5708.72093
## 227 5720.9302 5708.72093
## 228 5720.9302 5708.72093
## 229 5720.9302 5708.72093
## 230 5720.9302 5708.72093
## 231 5720.9302 5708.72093
## 232 5720.9302 5708.72093
## 233 5720.9302 5708.72093
## 234 5720.9302 5708.72093
## 235 5720.9302 5708.72093
## 236 5720.9302 5708.72093
## 237 5720.9302 5708.72093
## 238 5720.9302 5708.72093
## 239 5720.9302 5708.72093
## 240 5720.9302 5708.72093
## 241 331.3953 99.41860
## 242 331.3953 99.41860
## 243 331.3953 99.41860
## 244 331.3953 99.41860
## 245 331.3953 99.41860
## 246 331.3953 99.41860
## 247 331.3953 99.41860
## 248 331.3953 99.41860
## 249 331.3953 99.41860
## 250 331.3953 99.41860
## 251 331.3953 99.41860
## 252 331.3953 99.41860
## 253 331.3953 99.41860
## 254 331.3953 99.41860
## 255 331.3953 99.41860
## 256 331.3953 99.41860
## 257 331.3953 99.41860
## 258 331.3953 99.41860
## 259 331.3953 99.41860
## 260 331.3953 99.41860
## 261 331.3953 99.41860
## 262 331.3953 99.41860
## 263 331.3953 99.41860
## 264 331.3953 99.41860
## 265 3052.3256 146.51163
## 266 3052.3256 146.51163
## 267 3052.3256 146.51163
## 268 3052.3256 146.51163
## 269 3052.3256 146.51163
## 270 3052.3256 146.51163
## 271 3052.3256 146.51163
## 272 3052.3256 146.51163
## 273 3052.3256 146.51163
## 274 3052.3256 146.51163
## 275 3052.3256 146.51163
## 276 3052.3256 146.51163
## 277 3052.3256 146.51163
## 278 3052.3256 146.51163
## 279 3052.3256 146.51163
## 280 3052.3256 146.51163
## 281 3052.3256 146.51163
## 282 3052.3256 146.51163
## 283 3052.3256 146.51163
## 284 3052.3256 146.51163
## 285 3052.3256 146.51163
## 286 3052.3256 146.51163
## 287 3052.3256 146.51163
## 288 3052.3256 146.51163
## 289 2192.4419 0.00000
## 290 2192.4419 0.00000
## 291 2192.4419 0.00000
## 292 2192.4419 0.00000
## 293 2192.4419 0.00000
## 294 2192.4419 0.00000
## 295 2192.4419 0.00000
## 296 2192.4419 0.00000
## 297 2192.4419 0.00000
## 298 2192.4419 0.00000
## 299 2192.4419 0.00000
## 300 2192.4419 0.00000
## 301 2192.4419 0.00000
## 302 2192.4419 0.00000
## 303 2192.4419 0.00000
## 304 2192.4419 0.00000
## 305 2192.4419 0.00000
## 306 2192.4419 0.00000
## 307 2192.4419 0.00000
## 308 2192.4419 0.00000
## 309 2192.4419 0.00000
## 310 2192.4419 0.00000
## 311 2192.4419 0.00000
## 312 2192.4419 0.00000
## 313 1833.1395 976.74419
## 314 1833.1395 976.74419
## 315 1833.1395 976.74419
## 316 1833.1395 976.74419
## 317 1833.1395 976.74419
## 318 1833.1395 976.74419
## 319 1833.1395 976.74419
## 320 1833.1395 976.74419
## 321 1833.1395 976.74419
## 322 1833.1395 976.74419
## 323 1833.1395 976.74419
## 324 1833.1395 976.74419
## 325 1833.1395 976.74419
## 326 1833.1395 976.74419
## 327 1833.1395 976.74419
## 328 1833.1395 976.74419
## 329 1833.1395 976.74419
## 330 1833.1395 976.74419
## 331 1833.1395 976.74419
## 332 1833.1395 976.74419
## 333 1833.1395 976.74419
## 334 1833.1395 976.74419
## 335 1833.1395 976.74419
## 336 1833.1395 976.74419
## 337 1020.3488 1360.46512
## 338 1020.3488 1360.46512
## 339 1020.3488 1360.46512
## 340 1020.3488 1360.46512
## 341 1020.3488 1360.46512
## 342 1020.3488 1360.46512
## 343 1020.3488 1360.46512
## 344 1020.3488 1360.46512
## 345 1020.3488 1360.46512
## 346 1020.3488 1360.46512
## 347 1020.3488 1360.46512
## 348 1020.3488 1360.46512
## 349 1020.3488 1360.46512
## 350 1020.3488 1360.46512
## 351 1020.3488 1360.46512
## 352 1020.3488 1360.46512
## 353 1020.3488 1360.46512
## 354 1020.3488 1360.46512
## 355 1020.3488 1360.46512
## 356 1020.3488 1360.46512
## 357 1020.3488 1360.46512
## 358 1020.3488 1360.46512
## 359 1020.3488 1360.46512
## 360 1020.3488 1360.46512
## 361 109.0116 1068.31395
## 362 109.0116 1068.31395
## 363 109.0116 1068.31395
## 364 109.0116 1068.31395
## 365 109.0116 1068.31395
## 366 109.0116 1068.31395
## 367 109.0116 1068.31395
## 368 109.0116 1068.31395
## 369 109.0116 1068.31395
## 370 109.0116 1068.31395
## 371 109.0116 1068.31395
## 372 109.0116 1068.31395
## 373 109.0116 1068.31395
## 374 109.0116 1068.31395
## 375 109.0116 1068.31395
## 376 109.0116 1068.31395
## 377 109.0116 1068.31395
## 378 109.0116 1068.31395
## 379 109.0116 1068.31395
## 380 109.0116 1068.31395
## 381 109.0116 1068.31395
## 382 109.0116 1068.31395
## 383 109.0116 1068.31395
## 384 109.0116 1068.31395
## 385 5161.0465 883.43023
## 386 5161.0465 883.43023
## 387 5161.0465 883.43023
## 388 5161.0465 883.43023
## 389 5161.0465 883.43023
## 390 5161.0465 883.43023
## 391 5161.0465 883.43023
## 392 5161.0465 883.43023
## 393 5161.0465 883.43023
## 394 5161.0465 883.43023
## 395 5161.0465 883.43023
## 396 5161.0465 883.43023
## 397 5161.0465 883.43023
## 398 5161.0465 883.43023
## 399 5161.0465 883.43023
## 400 5161.0465 883.43023
## 401 5161.0465 883.43023
## 402 5161.0465 883.43023
## 403 5161.0465 883.43023
## 404 5161.0465 883.43023
## 405 5161.0465 883.43023
## 406 5161.0465 883.43023
## 407 5161.0465 883.43023
## 408 5161.0465 883.43023
## 409 915.6977 144.76744
## 410 915.6977 144.76744
## 411 915.6977 144.76744
## 412 915.6977 144.76744
## 413 915.6977 144.76744
## 414 915.6977 144.76744
## 415 915.6977 144.76744
## 416 915.6977 144.76744
## 417 915.6977 144.76744
## 418 915.6977 144.76744
## 419 915.6977 144.76744
## 420 915.6977 144.76744
## 421 915.6977 144.76744
## 422 915.6977 144.76744
## 423 915.6977 144.76744
## 424 915.6977 144.76744
## 425 915.6977 144.76744
## 426 915.6977 144.76744
## 427 915.6977 144.76744
## 428 915.6977 144.76744
## 429 915.6977 144.76744
## 430 915.6977 144.76744
## 431 915.6977 144.76744
## 432 915.6977 144.76744
## 433 872.0930 1128.48837
## 434 872.0930 1128.48837
## 435 872.0930 1128.48837
## 436 872.0930 1128.48837
## 437 872.0930 1128.48837
## 438 872.0930 1128.48837
## 439 872.0930 1128.48837
## 440 872.0930 1128.48837
## 441 872.0930 1128.48837
## 442 872.0930 1128.48837
## 443 872.0930 1128.48837
## 444 872.0930 1128.48837
## 445 872.0930 1128.48837
## 446 872.0930 1128.48837
## 447 872.0930 1128.48837
## 448 872.0930 1128.48837
## 449 872.0930 1128.48837
## 450 872.0930 1128.48837
## 451 872.0930 1128.48837
## 452 872.0930 1128.48837
## 453 872.0930 1128.48837
## 454 872.0930 1128.48837
## 455 872.0930 1128.48837
## 456 872.0930 1128.48837
## 457 2093.0233 2727.90698
## 458 2093.0233 2727.90698
## 459 2093.0233 2727.90698
## 460 2093.0233 2727.90698
## 461 2093.0233 2727.90698
## 462 2093.0233 2727.90698
## 463 2093.0233 2727.90698
## 464 2093.0233 2727.90698
## 465 2093.0233 2727.90698
## 466 2093.0233 2727.90698
## 467 2093.0233 2727.90698
## 468 2093.0233 2727.90698
## 469 2093.0233 2727.90698
## 470 2093.0233 2727.90698
## 471 2093.0233 2727.90698
## 472 2093.0233 2727.90698
## 473 2093.0233 2727.90698
## 474 2093.0233 2727.90698
## 475 2093.0233 2727.90698
## 476 2093.0233 2727.90698
## 477 2093.0233 2727.90698
## 478 2093.0233 2727.90698
## 479 2093.0233 2727.90698
## 480 2093.0233 2727.90698
## 481 1477.3256 1648.25581
## 482 1477.3256 1648.25581
## 483 1477.3256 1648.25581
## 484 1477.3256 1648.25581
## 485 1477.3256 1648.25581
## 486 1477.3256 1648.25581
## 487 1477.3256 1648.25581
## 488 1477.3256 1648.25581
## 489 1477.3256 1648.25581
## 490 1477.3256 1648.25581
## 491 1477.3256 1648.25581
## 492 1477.3256 1648.25581
## 493 1477.3256 1648.25581
## 494 1477.3256 1648.25581
## 495 1477.3256 1648.25581
## 496 1477.3256 1648.25581
## 497 1477.3256 1648.25581
## 498 1477.3256 1648.25581
## 499 1477.3256 1648.25581
## 500 1477.3256 1648.25581
## 501 1477.3256 1648.25581
## 502 1477.3256 1648.25581
## 503 1477.3256 1648.25581
## 504 1477.3256 1648.25581
## 505 3647.0930 366.27907
## 506 3647.0930 366.27907
## 507 3647.0930 366.27907
## 508 3647.0930 366.27907
## 509 3647.0930 366.27907
## 510 3647.0930 366.27907
## 511 3647.0930 366.27907
## 512 3647.0930 366.27907
## 513 3647.0930 366.27907
## 514 3647.0930 366.27907
## 515 3647.0930 366.27907
## 516 3647.0930 366.27907
## 517 3647.0930 366.27907
## 518 3647.0930 366.27907
## 519 3647.0930 366.27907
## 520 3647.0930 366.27907
## 521 3647.0930 366.27907
## 522 3647.0930 366.27907
## 523 3647.0930 366.27907
## 524 3647.0930 366.27907
## 525 3647.0930 366.27907
## 526 3647.0930 366.27907
## 527 3647.0930 366.27907
## 528 3647.0930 366.27907
## 529 353.1977 514.53488
## 530 353.1977 514.53488
## 531 353.1977 514.53488
## 532 353.1977 514.53488
## 533 353.1977 514.53488
## 534 353.1977 514.53488
## 535 353.1977 514.53488
## 536 353.1977 514.53488
## 537 353.1977 514.53488
## 538 353.1977 514.53488
## 539 353.1977 514.53488
## 540 353.1977 514.53488
## 541 353.1977 514.53488
## 542 353.1977 514.53488
## 543 353.1977 514.53488
## 544 353.1977 514.53488
## 545 353.1977 514.53488
## 546 353.1977 514.53488
## 547 353.1977 514.53488
## 548 353.1977 514.53488
## 549 353.1977 514.53488
## 550 353.1977 514.53488
## 551 353.1977 514.53488
## 552 353.1977 514.53488
## 553 523.2558 0.00000
## 554 523.2558 0.00000
## 555 523.2558 0.00000
## 556 523.2558 0.00000
## 557 523.2558 0.00000
## 558 523.2558 0.00000
## 559 523.2558 0.00000
## 560 523.2558 0.00000
## 561 523.2558 0.00000
## 562 523.2558 0.00000
## 563 523.2558 0.00000
## 564 523.2558 0.00000
## 565 523.2558 0.00000
## 566 523.2558 0.00000
## 567 523.2558 0.00000
## 568 523.2558 0.00000
## 569 523.2558 0.00000
## 570 523.2558 0.00000
## 571 523.2558 0.00000
## 572 523.2558 0.00000
## 573 523.2558 0.00000
## 574 523.2558 0.00000
## 575 523.2558 0.00000
## 576 523.2558 0.00000
## 577 5161.0465 883.43023
## 578 5161.0465 883.43023
## 579 5161.0465 883.43023
## 580 5161.0465 883.43023
## 581 5161.0465 883.43023
## 582 5161.0465 883.43023
## 583 5161.0465 883.43023
## 584 5161.0465 883.43023
## 585 5161.0465 883.43023
## 586 5161.0465 883.43023
## 587 5161.0465 883.43023
## 588 5161.0465 883.43023
## 589 5161.0465 883.43023
## 590 5161.0465 883.43023
## 591 5161.0465 883.43023
## 592 5161.0465 883.43023
## 593 5161.0465 883.43023
## 594 5161.0465 883.43023
## 595 5161.0465 883.43023
## 596 5161.0465 883.43023
## 597 5161.0465 883.43023
## 598 5161.0465 883.43023
## 599 5161.0465 883.43023
## 600 5161.0465 883.43023
## 601 2494.1860 702.90698
## 602 2494.1860 702.90698
## 603 2494.1860 702.90698
## 604 2494.1860 702.90698
## 605 2494.1860 702.90698
## 606 2494.1860 702.90698
## 607 2494.1860 702.90698
## 608 2494.1860 702.90698
## 609 2494.1860 702.90698
## 610 2494.1860 702.90698
## 611 2494.1860 702.90698
## 612 2494.1860 702.90698
## 613 2494.1860 702.90698
## 614 2494.1860 702.90698
## 615 2494.1860 702.90698
## 616 2494.1860 702.90698
## 617 2494.1860 702.90698
## 618 2494.1860 702.90698
## 619 2494.1860 702.90698
## 620 2494.1860 702.90698
## 621 2494.1860 702.90698
## 622 2494.1860 702.90698
## 623 2494.1860 702.90698
## 624 2494.1860 702.90698
## 625 3165.6977 1206.97674
## 626 3165.6977 1206.97674
## 627 3165.6977 1206.97674
## 628 3165.6977 1206.97674
## 629 3165.6977 1206.97674
## 630 3165.6977 1206.97674
## 631 3165.6977 1206.97674
## 632 3165.6977 1206.97674
## 633 3165.6977 1206.97674
## 634 3165.6977 1206.97674
## 635 3165.6977 1206.97674
## 636 3165.6977 1206.97674
## 637 3165.6977 1206.97674
## 638 3165.6977 1206.97674
## 639 3165.6977 1206.97674
## 640 3165.6977 1206.97674
## 641 3165.6977 1206.97674
## 642 3165.6977 1206.97674
## 643 3165.6977 1206.97674
## 644 3165.6977 1206.97674
## 645 3165.6977 1206.97674
## 646 3165.6977 1206.97674
## 647 3165.6977 1206.97674
## 648 3165.6977 1206.97674
## 649 0.0000 1376.16279
## 650 0.0000 1376.16279
## 651 0.0000 1376.16279
## 652 0.0000 1376.16279
## 653 0.0000 1376.16279
## 654 0.0000 1376.16279
## 655 0.0000 1376.16279
## 656 0.0000 1376.16279
## 657 0.0000 1376.16279
## 658 0.0000 1376.16279
## 659 0.0000 1376.16279
## 660 0.0000 1376.16279
## 661 0.0000 1376.16279
## 662 0.0000 1376.16279
## 663 0.0000 1376.16279
## 664 0.0000 1376.16279
## 665 0.0000 1376.16279
## 666 0.0000 1376.16279
## 667 0.0000 1376.16279
## 668 0.0000 1376.16279
## 669 0.0000 1376.16279
## 670 0.0000 1376.16279
## 671 0.0000 1376.16279
## 672 0.0000 1376.16279
## 673 422.0930 1055.23256
## 674 422.0930 1055.23256
## 675 422.0930 1055.23256
## 676 422.0930 1055.23256
## 677 422.0930 1055.23256
## 678 422.0930 1055.23256
## 679 422.0930 1055.23256
## 680 422.0930 1055.23256
## 681 422.0930 1055.23256
## 682 422.0930 1055.23256
## 683 422.0930 1055.23256
## 684 422.0930 1055.23256
## 685 422.0930 1055.23256
## 686 422.0930 1055.23256
## 687 422.0930 1055.23256
## 688 422.0930 1055.23256
## 689 422.0930 1055.23256
## 690 422.0930 1055.23256
## 691 422.0930 1055.23256
## 692 422.0930 1055.23256
## 693 422.0930 1055.23256
## 694 422.0930 1055.23256
## 695 422.0930 1055.23256
## 696 422.0930 1055.23256
## 697 167.4419 1561.04651
## 698 167.4419 1561.04651
## 699 167.4419 1561.04651
## 700 167.4419 1561.04651
## 701 167.4419 1561.04651
## 702 167.4419 1561.04651
## 703 167.4419 1561.04651
## 704 167.4419 1561.04651
## 705 167.4419 1561.04651
## 706 167.4419 1561.04651
## 707 167.4419 1561.04651
## 708 167.4419 1561.04651
## 709 167.4419 1561.04651
## 710 167.4419 1561.04651
## 711 167.4419 1561.04651
## 712 167.4419 1561.04651
## 713 167.4419 1561.04651
## 714 167.4419 1561.04651
## 715 167.4419 1561.04651
## 716 167.4419 1561.04651
## 717 167.4419 1561.04651
## 718 167.4419 1561.04651
## 719 167.4419 1561.04651
## 720 167.4419 1561.04651
## 721 109.0116 1609.01163
## 722 109.0116 1609.01163
## 723 109.0116 1609.01163
## 724 109.0116 1609.01163
## 725 109.0116 1609.01163
## 726 109.0116 1609.01163
## 727 109.0116 1609.01163
## 728 109.0116 1609.01163
## 729 109.0116 1609.01163
## 730 109.0116 1609.01163
## 731 109.0116 1609.01163
## 732 109.0116 1609.01163
## 733 109.0116 1609.01163
## 734 109.0116 1609.01163
## 735 109.0116 1609.01163
## 736 109.0116 1609.01163
## 737 109.0116 1609.01163
## 738 109.0116 1609.01163
## 739 109.0116 1609.01163
## 740 109.0116 1609.01163
## 741 109.0116 1609.01163
## 742 109.0116 1609.01163
## 743 109.0116 1609.01163
## 744 109.0116 1609.01163
## 745 545.0581 0.00000
## 746 545.0581 0.00000
## 747 545.0581 0.00000
## 748 545.0581 0.00000
## 749 545.0581 0.00000
## 750 545.0581 0.00000
## 751 545.0581 0.00000
## 752 545.0581 0.00000
## 753 545.0581 0.00000
## 754 545.0581 0.00000
## 755 545.0581 0.00000
## 756 545.0581 0.00000
## 757 545.0581 0.00000
## 758 545.0581 0.00000
## 759 545.0581 0.00000
## 760 545.0581 0.00000
## 761 545.0581 0.00000
## 762 545.0581 0.00000
## 763 545.0581 0.00000
## 764 545.0581 0.00000
## 765 545.0581 0.00000
## 766 545.0581 0.00000
## 767 545.0581 0.00000
## 768 545.0581 0.00000
## 769 5161.0465 883.43023
## 770 5161.0465 883.43023
## 771 5161.0465 883.43023
## 772 5161.0465 883.43023
## 773 5161.0465 883.43023
## 774 5161.0465 883.43023
## 775 5161.0465 883.43023
## 776 5161.0465 883.43023
## 777 5161.0465 883.43023
## 778 5161.0465 883.43023
## 779 5161.0465 883.43023
## 780 5161.0465 883.43023
## 781 5161.0465 883.43023
## 782 5161.0465 883.43023
## 783 5161.0465 883.43023
## 784 5161.0465 883.43023
## 785 5161.0465 883.43023
## 786 5161.0465 883.43023
## 787 5161.0465 883.43023
## 788 5161.0465 883.43023
## 789 5161.0465 883.43023
## 790 5161.0465 883.43023
## 791 5161.0465 883.43023
## 792 5161.0465 883.43023
## 793 4037.7907 2944.18605
## 794 4037.7907 2944.18605
## 795 4037.7907 2944.18605
## 796 4037.7907 2944.18605
## 797 4037.7907 2944.18605
## 798 4037.7907 2944.18605
## 799 4037.7907 2944.18605
## 800 4037.7907 2944.18605
## 801 4037.7907 2944.18605
## 802 4037.7907 2944.18605
## 803 4037.7907 2944.18605
## 804 4037.7907 2944.18605
## 805 4037.7907 2944.18605
## 806 4037.7907 2944.18605
## 807 4037.7907 2944.18605
## 808 4037.7907 2944.18605
## 809 4037.7907 2944.18605
## 810 4037.7907 2944.18605
## 811 4037.7907 2944.18605
## 812 4037.7907 2944.18605
## 813 4037.7907 2944.18605
## 814 4037.7907 2944.18605
## 815 4037.7907 2944.18605
## 816 4037.7907 2944.18605
## 817 566.8605 99.41860
## 818 566.8605 99.41860
## 819 566.8605 99.41860
## 820 566.8605 99.41860
## 821 566.8605 99.41860
## 822 566.8605 99.41860
## 823 566.8605 99.41860
## 824 566.8605 99.41860
## 825 566.8605 99.41860
## 826 566.8605 99.41860
## 827 566.8605 99.41860
## 828 566.8605 99.41860
## 829 566.8605 99.41860
## 830 566.8605 99.41860
## 831 566.8605 99.41860
## 832 566.8605 99.41860
## 833 566.8605 99.41860
## 834 566.8605 99.41860
## 835 566.8605 99.41860
## 836 566.8605 99.41860
## 837 566.8605 99.41860
## 838 566.8605 99.41860
## 839 566.8605 99.41860
## 840 566.8605 99.41860
## 841 2180.2326 3059.30233
## 842 2180.2326 3059.30233
## 843 2180.2326 3059.30233
## 844 2180.2326 3059.30233
## 845 2180.2326 3059.30233
## 846 2180.2326 3059.30233
## 847 2180.2326 3059.30233
## 848 2180.2326 3059.30233
## 849 2180.2326 3059.30233
## 850 2180.2326 3059.30233
## 851 2180.2326 3059.30233
## 852 2180.2326 3059.30233
## 853 2180.2326 3059.30233
## 854 2180.2326 3059.30233
## 855 2180.2326 3059.30233
## 856 2180.2326 3059.30233
## 857 2180.2326 3059.30233
## 858 2180.2326 3059.30233
## 859 2180.2326 3059.30233
## 860 2180.2326 3059.30233
## 861 2180.2326 3059.30233
## 862 2180.2326 3059.30233
## 863 2180.2326 3059.30233
## 864 2180.2326 3059.30233
## 865 1939.5349 409.88372
## 866 1939.5349 409.88372
## 867 1939.5349 409.88372
## 868 1939.5349 409.88372
## 869 1939.5349 409.88372
## 870 1939.5349 409.88372
## 871 1939.5349 409.88372
## 872 1939.5349 409.88372
## 873 1939.5349 409.88372
## 874 1939.5349 409.88372
## 875 1939.5349 409.88372
## 876 1939.5349 409.88372
## 877 1939.5349 409.88372
## 878 1939.5349 409.88372
## 879 1939.5349 409.88372
## 880 1939.5349 409.88372
## 881 1939.5349 409.88372
## 882 1939.5349 409.88372
## 883 1939.5349 409.88372
## 884 1939.5349 409.88372
## 885 1939.5349 409.88372
## 886 1939.5349 409.88372
## 887 1939.5349 409.88372
## 888 1939.5349 409.88372
## 889 1990.1163 2406.97674
## 890 1990.1163 2406.97674
## 891 1990.1163 2406.97674
## 892 1990.1163 2406.97674
## 893 1990.1163 2406.97674
## 894 1990.1163 2406.97674
## 895 1990.1163 2406.97674
## 896 1990.1163 2406.97674
## 897 1990.1163 2406.97674
## 898 1990.1163 2406.97674
## 899 1990.1163 2406.97674
## 900 1990.1163 2406.97674
## 901 1990.1163 2406.97674
## 902 1990.1163 2406.97674
## 903 1990.1163 2406.97674
## 904 1990.1163 2406.97674
## 905 1990.1163 2406.97674
## 906 1990.1163 2406.97674
## 907 1990.1163 2406.97674
## 908 1990.1163 2406.97674
## 909 1990.1163 2406.97674
## 910 1990.1163 2406.97674
## 911 1990.1163 2406.97674
## 912 1990.1163 2406.97674
## 913 109.0116 2132.26744
## 914 109.0116 2132.26744
## 915 109.0116 2132.26744
## 916 109.0116 2132.26744
## 917 109.0116 2132.26744
## 918 109.0116 2132.26744
## 919 109.0116 2132.26744
## 920 109.0116 2132.26744
## 921 109.0116 2132.26744
## 922 109.0116 2132.26744
## 923 109.0116 2132.26744
## 924 109.0116 2132.26744
## 925 109.0116 2132.26744
## 926 109.0116 2132.26744
## 927 109.0116 2132.26744
## 928 109.0116 2132.26744
## 929 109.0116 2132.26744
## 930 109.0116 2132.26744
## 931 109.0116 2132.26744
## 932 109.0116 2132.26744
## 933 109.0116 2132.26744
## 934 109.0116 2132.26744
## 935 109.0116 2132.26744
## 936 109.0116 2132.26744
## 937 562.5000 1848.83721
## 938 562.5000 1848.83721
## 939 562.5000 1848.83721
## 940 562.5000 1848.83721
## 941 562.5000 1848.83721
## 942 562.5000 1848.83721
## 943 562.5000 1848.83721
## 944 562.5000 1848.83721
## 945 562.5000 1848.83721
## 946 562.5000 1848.83721
## 947 562.5000 1848.83721
## 948 562.5000 1848.83721
## 949 562.5000 1848.83721
## 950 562.5000 1848.83721
## 951 562.5000 1848.83721
## 952 562.5000 1848.83721
## 953 562.5000 1848.83721
## 954 562.5000 1848.83721
## 955 562.5000 1848.83721
## 956 562.5000 1848.83721
## 957 562.5000 1848.83721
## 958 562.5000 1848.83721
## 959 562.5000 1848.83721
## 960 562.5000 1848.83721
## 961 5161.0465 883.43023
## 962 5161.0465 883.43023
## 963 5161.0465 883.43023
## 964 5161.0465 883.43023
## 965 5161.0465 883.43023
## 966 5161.0465 883.43023
## 967 5161.0465 883.43023
## 968 5161.0465 883.43023
## 969 5161.0465 883.43023
## 970 5161.0465 883.43023
## 971 5161.0465 883.43023
## 972 5161.0465 883.43023
## 973 5161.0465 883.43023
## 974 5161.0465 883.43023
## 975 5161.0465 883.43023
## 976 5161.0465 883.43023
## 977 5161.0465 883.43023
## 978 5161.0465 883.43023
## 979 5161.0465 883.43023
## 980 5161.0465 883.43023
## 981 5161.0465 883.43023
## 982 5161.0465 883.43023
## 983 5161.0465 883.43023
## 984 5161.0465 883.43023
## 985 852.9070 2131.39535
## 986 852.9070 2131.39535
## 987 852.9070 2131.39535
## 988 852.9070 2131.39535
## 989 852.9070 2131.39535
## 990 852.9070 2131.39535
## 991 852.9070 2131.39535
## 992 852.9070 2131.39535
## 993 852.9070 2131.39535
## 994 852.9070 2131.39535
## 995 852.9070 2131.39535
## 996 852.9070 2131.39535
## 997 852.9070 2131.39535
## 998 852.9070 2131.39535
## 999 852.9070 2131.39535
## 1000 852.9070 2131.39535
## 1001 852.9070 2131.39535
## 1002 852.9070 2131.39535
## 1003 852.9070 2131.39535
## 1004 852.9070 2131.39535
## 1005 852.9070 2131.39535
## 1006 852.9070 2131.39535
## 1007 852.9070 2131.39535
## 1008 852.9070 2131.39535
## 1009 1974.4186 1412.79070
## 1010 1974.4186 1412.79070
## 1011 1974.4186 1412.79070
## 1012 1974.4186 1412.79070
## 1013 1974.4186 1412.79070
## 1014 1974.4186 1412.79070
## 1015 1974.4186 1412.79070
## 1016 1974.4186 1412.79070
## 1017 1974.4186 1412.79070
## 1018 1974.4186 1412.79070
## 1019 1974.4186 1412.79070
## 1020 1974.4186 1412.79070
## 1021 1974.4186 1412.79070
## 1022 1974.4186 1412.79070
## 1023 1974.4186 1412.79070
## 1024 1974.4186 1412.79070
## 1025 1974.4186 1412.79070
## 1026 1974.4186 1412.79070
## 1027 1974.4186 1412.79070
## 1028 1974.4186 1412.79070
## 1029 1974.4186 1412.79070
## 1030 1974.4186 1412.79070
## 1031 1974.4186 1412.79070
## 1032 1974.4186 1412.79070
## 1033 2019.7674 3729.06977
## 1034 2019.7674 3729.06977
## 1035 2019.7674 3729.06977
## 1036 2019.7674 3729.06977
## 1037 2019.7674 3729.06977
## 1038 2019.7674 3729.06977
## 1039 2019.7674 3729.06977
## 1040 2019.7674 3729.06977
## 1041 2019.7674 3729.06977
## 1042 2019.7674 3729.06977
## 1043 2019.7674 3729.06977
## 1044 2019.7674 3729.06977
## 1045 2019.7674 3729.06977
## 1046 2019.7674 3729.06977
## 1047 2019.7674 3729.06977
## 1048 2019.7674 3729.06977
## 1049 2019.7674 3729.06977
## 1050 2019.7674 3729.06977
## 1051 2019.7674 3729.06977
## 1052 2019.7674 3729.06977
## 1053 2019.7674 3729.06977
## 1054 2019.7674 3729.06977
## 1055 2019.7674 3729.06977
## 1056 2019.7674 3729.06977
## 1057 2572.6744 1709.30233
## 1058 2572.6744 1709.30233
## 1059 2572.6744 1709.30233
## 1060 2572.6744 1709.30233
## 1061 2572.6744 1709.30233
## 1062 2572.6744 1709.30233
## 1063 2572.6744 1709.30233
## 1064 2572.6744 1709.30233
## 1065 2572.6744 1709.30233
## 1066 2572.6744 1709.30233
## 1067 2572.6744 1709.30233
## 1068 2572.6744 1709.30233
## 1069 2572.6744 1709.30233
## 1070 2572.6744 1709.30233
## 1071 2572.6744 1709.30233
## 1072 2572.6744 1709.30233
## 1073 2572.6744 1709.30233
## 1074 2572.6744 1709.30233
## 1075 2572.6744 1709.30233
## 1076 2572.6744 1709.30233
## 1077 2572.6744 1709.30233
## 1078 2572.6744 1709.30233
## 1079 2572.6744 1709.30233
## 1080 2572.6744 1709.30233
## 1081 610.4651 540.69767
## 1082 610.4651 540.69767
## 1083 610.4651 540.69767
## 1084 610.4651 540.69767
## 1085 610.4651 540.69767
## 1086 610.4651 540.69767
## 1087 610.4651 540.69767
## 1088 610.4651 540.69767
## 1089 610.4651 540.69767
## 1090 610.4651 540.69767
## 1091 610.4651 540.69767
## 1092 610.4651 540.69767
## 1093 610.4651 540.69767
## 1094 610.4651 540.69767
## 1095 610.4651 540.69767
## 1096 610.4651 540.69767
## 1097 610.4651 540.69767
## 1098 610.4651 540.69767
## 1099 610.4651 540.69767
## 1100 610.4651 540.69767
## 1101 610.4651 540.69767
## 1102 610.4651 540.69767
## 1103 610.4651 540.69767
## 1104 610.4651 540.69767
## 1105 0.0000 1181.68605
## 1106 0.0000 1181.68605
## 1107 0.0000 1181.68605
## 1108 0.0000 1181.68605
## 1109 0.0000 1181.68605
## 1110 0.0000 1181.68605
## 1111 0.0000 1181.68605
## 1112 0.0000 1181.68605
## 1113 0.0000 1181.68605
## 1114 0.0000 1181.68605
## 1115 0.0000 1181.68605
## 1116 0.0000 1181.68605
## 1117 0.0000 1181.68605
## 1118 0.0000 1181.68605
## 1119 0.0000 1181.68605
## 1120 0.0000 1181.68605
## 1121 0.0000 1181.68605
## 1122 0.0000 1181.68605
## 1123 0.0000 1181.68605
## 1124 0.0000 1181.68605
## 1125 0.0000 1181.68605
## 1126 0.0000 1181.68605
## 1127 0.0000 1181.68605
## 1128 0.0000 1181.68605
## 1129 422.9651 1063.95349
## 1130 422.9651 1063.95349
## 1131 422.9651 1063.95349
## 1132 422.9651 1063.95349
## 1133 422.9651 1063.95349
## 1134 422.9651 1063.95349
## 1135 422.9651 1063.95349
## 1136 422.9651 1063.95349
## 1137 422.9651 1063.95349
## 1138 422.9651 1063.95349
## 1139 422.9651 1063.95349
## 1140 422.9651 1063.95349
## 1141 422.9651 1063.95349
## 1142 422.9651 1063.95349
## 1143 422.9651 1063.95349
## 1144 422.9651 1063.95349
## 1145 422.9651 1063.95349
## 1146 422.9651 1063.95349
## 1147 422.9651 1063.95349
## 1148 422.9651 1063.95349
## 1149 422.9651 1063.95349
## 1150 422.9651 1063.95349
## 1151 422.9651 1063.95349
## 1152 422.9651 1063.95349
## 1153 5161.0465 883.43023
## 1154 5161.0465 883.43023
## 1155 5161.0465 883.43023
## 1156 5161.0465 883.43023
## 1157 5161.0465 883.43023
## 1158 5161.0465 883.43023
## 1159 5161.0465 883.43023
## 1160 5161.0465 883.43023
## 1161 5161.0465 883.43023
## 1162 5161.0465 883.43023
## 1163 5161.0465 883.43023
## 1164 5161.0465 883.43023
## 1165 5161.0465 883.43023
## 1166 5161.0465 883.43023
## 1167 5161.0465 883.43023
## 1168 5161.0465 883.43023
## 1169 5161.0465 883.43023
## 1170 5161.0465 883.43023
## 1171 5161.0465 883.43023
## 1172 5161.0465 883.43023
## 1173 5161.0465 883.43023
## 1174 5161.0465 883.43023
## 1175 5161.0465 883.43023
## 1176 5161.0465 883.43023
## 1177 6573.8372 5986.04651
## 1178 6573.8372 5986.04651
## 1179 6573.8372 5986.04651
## 1180 6573.8372 5986.04651
## 1181 6573.8372 5986.04651
## 1182 6573.8372 5986.04651
## 1183 6573.8372 5986.04651
## 1184 6573.8372 5986.04651
## 1185 6573.8372 5986.04651
## 1186 6573.8372 5986.04651
## 1187 6573.8372 5986.04651
## 1188 6573.8372 5986.04651
## 1189 6573.8372 5986.04651
## 1190 6573.8372 5986.04651
## 1191 6573.8372 5986.04651
## 1192 6573.8372 5986.04651
## 1193 6573.8372 5986.04651
## 1194 6573.8372 5986.04651
## 1195 6573.8372 5986.04651
## 1196 6573.8372 5986.04651
## 1197 6573.8372 5986.04651
## 1198 6573.8372 5986.04651
## 1199 6573.8372 5986.04651
## 1200 6573.8372 5986.04651
## 1201 334.8837 322.67442
## 1202 334.8837 322.67442
## 1203 334.8837 322.67442
## 1204 334.8837 322.67442
## 1205 334.8837 322.67442
## 1206 334.8837 322.67442
## 1207 334.8837 322.67442
## 1208 334.8837 322.67442
## 1209 334.8837 322.67442
## 1210 334.8837 322.67442
## 1211 334.8837 322.67442
## 1212 334.8837 322.67442
## 1213 334.8837 322.67442
## 1214 334.8837 322.67442
## 1215 334.8837 322.67442
## 1216 334.8837 322.67442
## 1217 334.8837 322.67442
## 1218 334.8837 322.67442
## 1219 334.8837 322.67442
## 1220 334.8837 322.67442
## 1221 334.8837 322.67442
## 1222 334.8837 322.67442
## 1223 334.8837 322.67442
## 1224 334.8837 322.67442
## 1225 3702.9070 92.44186
## 1226 3702.9070 92.44186
## 1227 3702.9070 92.44186
## 1228 3702.9070 92.44186
## 1229 3702.9070 92.44186
## 1230 3702.9070 92.44186
## 1231 3702.9070 92.44186
## 1232 3702.9070 92.44186
## 1233 3702.9070 92.44186
## 1234 3702.9070 92.44186
## 1235 3702.9070 92.44186
## 1236 3702.9070 92.44186
## 1237 3702.9070 92.44186
## 1238 3702.9070 92.44186
## 1239 3702.9070 92.44186
## 1240 3702.9070 92.44186
## 1241 3702.9070 92.44186
## 1242 3702.9070 92.44186
## 1243 3702.9070 92.44186
## 1244 3702.9070 92.44186
## 1245 3702.9070 92.44186
## 1246 3702.9070 92.44186
## 1247 3702.9070 92.44186
## 1248 3702.9070 92.44186
## 1249 1988.3721 0.00000
## 1250 1988.3721 0.00000
## 1251 1988.3721 0.00000
## 1252 1988.3721 0.00000
## 1253 1988.3721 0.00000
## 1254 1988.3721 0.00000
## 1255 1988.3721 0.00000
## 1256 1988.3721 0.00000
## 1257 1988.3721 0.00000
## 1258 1988.3721 0.00000
## 1259 1988.3721 0.00000
## 1260 1988.3721 0.00000
## 1261 1988.3721 0.00000
## 1262 1988.3721 0.00000
## 1263 1988.3721 0.00000
## 1264 1988.3721 0.00000
## 1265 1988.3721 0.00000
## 1266 1988.3721 0.00000
## 1267 1988.3721 0.00000
## 1268 1988.3721 0.00000
## 1269 1988.3721 0.00000
## 1270 1988.3721 0.00000
## 1271 1988.3721 0.00000
## 1272 1988.3721 0.00000
## 1273 1883.7209 976.74419
## 1274 1883.7209 976.74419
## 1275 1883.7209 976.74419
## 1276 1883.7209 976.74419
## 1277 1883.7209 976.74419
## 1278 1883.7209 976.74419
## 1279 1883.7209 976.74419
## 1280 1883.7209 976.74419
## 1281 1883.7209 976.74419
## 1282 1883.7209 976.74419
## 1283 1883.7209 976.74419
## 1284 1883.7209 976.74419
## 1285 1883.7209 976.74419
## 1286 1883.7209 976.74419
## 1287 1883.7209 976.74419
## 1288 1883.7209 976.74419
## 1289 1883.7209 976.74419
## 1290 1883.7209 976.74419
## 1291 1883.7209 976.74419
## 1292 1883.7209 976.74419
## 1293 1883.7209 976.74419
## 1294 1883.7209 976.74419
## 1295 1883.7209 976.74419
## 1296 1883.7209 976.74419
## 1297 911.3372 1360.46512
## 1298 911.3372 1360.46512
## 1299 911.3372 1360.46512
## 1300 911.3372 1360.46512
## 1301 911.3372 1360.46512
## 1302 911.3372 1360.46512
## 1303 911.3372 1360.46512
## 1304 911.3372 1360.46512
## 1305 911.3372 1360.46512
## 1306 911.3372 1360.46512
## 1307 911.3372 1360.46512
## 1308 911.3372 1360.46512
## 1309 911.3372 1360.46512
## 1310 911.3372 1360.46512
## 1311 911.3372 1360.46512
## 1312 911.3372 1360.46512
## 1313 911.3372 1360.46512
## 1314 911.3372 1360.46512
## 1315 911.3372 1360.46512
## 1316 911.3372 1360.46512
## 1317 911.3372 1360.46512
## 1318 911.3372 1360.46512
## 1319 911.3372 1360.46512
## 1320 911.3372 1360.46512
## 1321 0.0000 1068.31395
## 1322 0.0000 1068.31395
## 1323 0.0000 1068.31395
## 1324 0.0000 1068.31395
## 1325 0.0000 1068.31395
## 1326 0.0000 1068.31395
## 1327 0.0000 1068.31395
## 1328 0.0000 1068.31395
## 1329 0.0000 1068.31395
## 1330 0.0000 1068.31395
## 1331 0.0000 1068.31395
## 1332 0.0000 1068.31395
## 1333 0.0000 1068.31395
## 1334 0.0000 1068.31395
## 1335 0.0000 1068.31395
## 1336 0.0000 1068.31395
## 1337 0.0000 1068.31395
## 1338 0.0000 1068.31395
## 1339 0.0000 1068.31395
## 1340 0.0000 1068.31395
## 1341 0.0000 1068.31395
## 1342 0.0000 1068.31395
## 1343 0.0000 1068.31395
## 1344 0.0000 1068.31395
## 1345 5161.0465 883.43023
## 1346 5161.0465 883.43023
## 1347 5161.0465 883.43023
## 1348 5161.0465 883.43023
## 1349 5161.0465 883.43023
## 1350 5161.0465 883.43023
## 1351 5161.0465 883.43023
## 1352 5161.0465 883.43023
## 1353 5161.0465 883.43023
## 1354 5161.0465 883.43023
## 1355 5161.0465 883.43023
## 1356 5161.0465 883.43023
## 1357 5161.0465 883.43023
## 1358 5161.0465 883.43023
## 1359 5161.0465 883.43023
## 1360 5161.0465 883.43023
## 1361 5161.0465 883.43023
## 1362 5161.0465 883.43023
## 1363 5161.0465 883.43023
## 1364 5161.0465 883.43023
## 1365 5161.0465 883.43023
## 1366 5161.0465 883.43023
## 1367 5161.0465 883.43023
## 1368 5161.0465 883.43023
## 1369 1768.6047 422.09302
## 1370 1768.6047 422.09302
## 1371 1768.6047 422.09302
## 1372 1768.6047 422.09302
## 1373 1768.6047 422.09302
## 1374 1768.6047 422.09302
## 1375 1768.6047 422.09302
## 1376 1768.6047 422.09302
## 1377 1768.6047 422.09302
## 1378 1768.6047 422.09302
## 1379 1768.6047 422.09302
## 1380 1768.6047 422.09302
## 1381 1768.6047 422.09302
## 1382 1768.6047 422.09302
## 1383 1768.6047 422.09302
## 1384 1768.6047 422.09302
## 1385 1768.6047 422.09302
## 1386 1768.6047 422.09302
## 1387 1768.6047 422.09302
## 1388 1768.6047 422.09302
## 1389 1768.6047 422.09302
## 1390 1768.6047 422.09302
## 1391 1768.6047 422.09302
## 1392 1768.6047 422.09302
## 1393 875.5814 1351.74419
## 1394 875.5814 1351.74419
## 1395 875.5814 1351.74419
## 1396 875.5814 1351.74419
## 1397 875.5814 1351.74419
## 1398 875.5814 1351.74419
## 1399 875.5814 1351.74419
## 1400 875.5814 1351.74419
## 1401 875.5814 1351.74419
## 1402 875.5814 1351.74419
## 1403 875.5814 1351.74419
## 1404 875.5814 1351.74419
## 1405 875.5814 1351.74419
## 1406 875.5814 1351.74419
## 1407 875.5814 1351.74419
## 1408 875.5814 1351.74419
## 1409 875.5814 1351.74419
## 1410 875.5814 1351.74419
## 1411 875.5814 1351.74419
## 1412 875.5814 1351.74419
## 1413 875.5814 1351.74419
## 1414 875.5814 1351.74419
## 1415 875.5814 1351.74419
## 1416 875.5814 1351.74419
## 1417 2743.6047 2673.83721
## 1418 2743.6047 2673.83721
## 1419 2743.6047 2673.83721
## 1420 2743.6047 2673.83721
## 1421 2743.6047 2673.83721
## 1422 2743.6047 2673.83721
## 1423 2743.6047 2673.83721
## 1424 2743.6047 2673.83721
## 1425 2743.6047 2673.83721
## 1426 2743.6047 2673.83721
## 1427 2743.6047 2673.83721
## 1428 2743.6047 2673.83721
## 1429 2743.6047 2673.83721
## 1430 2743.6047 2673.83721
## 1431 2743.6047 2673.83721
## 1432 2743.6047 2673.83721
## 1433 2743.6047 2673.83721
## 1434 2743.6047 2673.83721
## 1435 2743.6047 2673.83721
## 1436 2743.6047 2673.83721
## 1437 2743.6047 2673.83721
## 1438 2743.6047 2673.83721
## 1439 2743.6047 2673.83721
## 1440 2743.6047 2673.83721
## 1441 1273.2558 1648.25581
## 1442 1273.2558 1648.25581
## 1443 1273.2558 1648.25581
## 1444 1273.2558 1648.25581
## 1445 1273.2558 1648.25581
## 1446 1273.2558 1648.25581
## 1447 1273.2558 1648.25581
## 1448 1273.2558 1648.25581
## 1449 1273.2558 1648.25581
## 1450 1273.2558 1648.25581
## 1451 1273.2558 1648.25581
## 1452 1273.2558 1648.25581
## 1453 1273.2558 1648.25581
## 1454 1273.2558 1648.25581
## 1455 1273.2558 1648.25581
## 1456 1273.2558 1648.25581
## 1457 1273.2558 1648.25581
## 1458 1273.2558 1648.25581
## 1459 1273.2558 1648.25581
## 1460 1273.2558 1648.25581
## 1461 1273.2558 1648.25581
## 1462 1273.2558 1648.25581
## 1463 1273.2558 1648.25581
## 1464 1273.2558 1648.25581
## 1465 3697.6744 366.27907
## 1466 3697.6744 366.27907
## 1467 3697.6744 366.27907
## 1468 3697.6744 366.27907
## 1469 3697.6744 366.27907
## 1470 3697.6744 366.27907
## 1471 3697.6744 366.27907
## 1472 3697.6744 366.27907
## 1473 3697.6744 366.27907
## 1474 3697.6744 366.27907
## 1475 3697.6744 366.27907
## 1476 3697.6744 366.27907
## 1477 3697.6744 366.27907
## 1478 3697.6744 366.27907
## 1479 3697.6744 366.27907
## 1480 3697.6744 366.27907
## 1481 3697.6744 366.27907
## 1482 3697.6744 366.27907
## 1483 3697.6744 366.27907
## 1484 3697.6744 366.27907
## 1485 3697.6744 366.27907
## 1486 3697.6744 366.27907
## 1487 3697.6744 366.27907
## 1488 3697.6744 366.27907
## 1489 244.1860 514.53488
## 1490 244.1860 514.53488
## 1491 244.1860 514.53488
## 1492 244.1860 514.53488
## 1493 244.1860 514.53488
## 1494 244.1860 514.53488
## 1495 244.1860 514.53488
## 1496 244.1860 514.53488
## 1497 244.1860 514.53488
## 1498 244.1860 514.53488
## 1499 244.1860 514.53488
## 1500 244.1860 514.53488
## 1501 244.1860 514.53488
## 1502 244.1860 514.53488
## 1503 244.1860 514.53488
## 1504 244.1860 514.53488
## 1505 244.1860 514.53488
## 1506 244.1860 514.53488
## 1507 244.1860 514.53488
## 1508 244.1860 514.53488
## 1509 244.1860 514.53488
## 1510 244.1860 514.53488
## 1511 244.1860 514.53488
## 1512 244.1860 514.53488
## 1513 414.2442 0.00000
## 1514 414.2442 0.00000
## 1515 414.2442 0.00000
## 1516 414.2442 0.00000
## 1517 414.2442 0.00000
## 1518 414.2442 0.00000
## 1519 414.2442 0.00000
## 1520 414.2442 0.00000
## 1521 414.2442 0.00000
## 1522 414.2442 0.00000
## 1523 414.2442 0.00000
## 1524 414.2442 0.00000
## 1525 414.2442 0.00000
## 1526 414.2442 0.00000
## 1527 414.2442 0.00000
## 1528 414.2442 0.00000
## 1529 414.2442 0.00000
## 1530 414.2442 0.00000
## 1531 414.2442 0.00000
## 1532 414.2442 0.00000
## 1533 414.2442 0.00000
## 1534 414.2442 0.00000
## 1535 414.2442 0.00000
## 1536 414.2442 0.00000
## 1537 5161.0465 883.43023
## 1538 5161.0465 883.43023
## 1539 5161.0465 883.43023
## 1540 5161.0465 883.43023
## 1541 5161.0465 883.43023
## 1542 5161.0465 883.43023
## 1543 5161.0465 883.43023
## 1544 5161.0465 883.43023
## 1545 5161.0465 883.43023
## 1546 5161.0465 883.43023
## 1547 5161.0465 883.43023
## 1548 5161.0465 883.43023
## 1549 5161.0465 883.43023
## 1550 5161.0465 883.43023
## 1551 5161.0465 883.43023
## 1552 5161.0465 883.43023
## 1553 5161.0465 883.43023
## 1554 5161.0465 883.43023
## 1555 5161.0465 883.43023
## 1556 5161.0465 883.43023
## 1557 5161.0465 883.43023
## 1558 5161.0465 883.43023
## 1559 5161.0465 883.43023
## 1560 5161.0465 883.43023
## 1561 3347.0930 980.23256
## 1562 3347.0930 980.23256
## 1563 3347.0930 980.23256
## 1564 3347.0930 980.23256
## 1565 3347.0930 980.23256
## 1566 3347.0930 980.23256
## 1567 3347.0930 980.23256
## 1568 3347.0930 980.23256
## 1569 3347.0930 980.23256
## 1570 3347.0930 980.23256
## 1571 3347.0930 980.23256
## 1572 3347.0930 980.23256
## 1573 3347.0930 980.23256
## 1574 3347.0930 980.23256
## 1575 3347.0930 980.23256
## 1576 3347.0930 980.23256
## 1577 3347.0930 980.23256
## 1578 3347.0930 980.23256
## 1579 3347.0930 980.23256
## 1580 3347.0930 980.23256
## 1581 3347.0930 980.23256
## 1582 3347.0930 980.23256
## 1583 3347.0930 980.23256
## 1584 3347.0930 980.23256
## 1585 3169.1860 1430.23256
## 1586 3169.1860 1430.23256
## 1587 3169.1860 1430.23256
## 1588 3169.1860 1430.23256
## 1589 3169.1860 1430.23256
## 1590 3169.1860 1430.23256
## 1591 3169.1860 1430.23256
## 1592 3169.1860 1430.23256
## 1593 3169.1860 1430.23256
## 1594 3169.1860 1430.23256
## 1595 3169.1860 1430.23256
## 1596 3169.1860 1430.23256
## 1597 3169.1860 1430.23256
## 1598 3169.1860 1430.23256
## 1599 3169.1860 1430.23256
## 1600 3169.1860 1430.23256
## 1601 3169.1860 1430.23256
## 1602 3169.1860 1430.23256
## 1603 3169.1860 1430.23256
## 1604 3169.1860 1430.23256
## 1605 3169.1860 1430.23256
## 1606 3169.1860 1430.23256
## 1607 3169.1860 1430.23256
## 1608 3169.1860 1430.23256
## 1609 650.5814 1322.09302
## 1610 650.5814 1322.09302
## 1611 650.5814 1322.09302
## 1612 650.5814 1322.09302
## 1613 650.5814 1322.09302
## 1614 650.5814 1322.09302
## 1615 650.5814 1322.09302
## 1616 650.5814 1322.09302
## 1617 650.5814 1322.09302
## 1618 650.5814 1322.09302
## 1619 650.5814 1322.09302
## 1620 650.5814 1322.09302
## 1621 650.5814 1322.09302
## 1622 650.5814 1322.09302
## 1623 650.5814 1322.09302
## 1624 650.5814 1322.09302
## 1625 650.5814 1322.09302
## 1626 650.5814 1322.09302
## 1627 650.5814 1322.09302
## 1628 650.5814 1322.09302
## 1629 650.5814 1322.09302
## 1630 650.5814 1322.09302
## 1631 650.5814 1322.09302
## 1632 650.5814 1322.09302
## 1633 218.0233 1055.23256
## 1634 218.0233 1055.23256
## 1635 218.0233 1055.23256
## 1636 218.0233 1055.23256
## 1637 218.0233 1055.23256
## 1638 218.0233 1055.23256
## 1639 218.0233 1055.23256
## 1640 218.0233 1055.23256
## 1641 218.0233 1055.23256
## 1642 218.0233 1055.23256
## 1643 218.0233 1055.23256
## 1644 218.0233 1055.23256
## 1645 218.0233 1055.23256
## 1646 218.0233 1055.23256
## 1647 218.0233 1055.23256
## 1648 218.0233 1055.23256
## 1649 218.0233 1055.23256
## 1650 218.0233 1055.23256
## 1651 218.0233 1055.23256
## 1652 218.0233 1055.23256
## 1653 218.0233 1055.23256
## 1654 218.0233 1055.23256
## 1655 218.0233 1055.23256
## 1656 218.0233 1055.23256
## 1657 218.0233 1561.04651
## 1658 218.0233 1561.04651
## 1659 218.0233 1561.04651
## 1660 218.0233 1561.04651
## 1661 218.0233 1561.04651
## 1662 218.0233 1561.04651
## 1663 218.0233 1561.04651
## 1664 218.0233 1561.04651
## 1665 218.0233 1561.04651
## 1666 218.0233 1561.04651
## 1667 218.0233 1561.04651
## 1668 218.0233 1561.04651
## 1669 218.0233 1561.04651
## 1670 218.0233 1561.04651
## 1671 218.0233 1561.04651
## 1672 218.0233 1561.04651
## 1673 218.0233 1561.04651
## 1674 218.0233 1561.04651
## 1675 218.0233 1561.04651
## 1676 218.0233 1561.04651
## 1677 218.0233 1561.04651
## 1678 218.0233 1561.04651
## 1679 218.0233 1561.04651
## 1680 218.0233 1561.04651
## 1681 0.0000 1609.01163
## 1682 0.0000 1609.01163
## 1683 0.0000 1609.01163
## 1684 0.0000 1609.01163
## 1685 0.0000 1609.01163
## 1686 0.0000 1609.01163
## 1687 0.0000 1609.01163
## 1688 0.0000 1609.01163
## 1689 0.0000 1609.01163
## 1690 0.0000 1609.01163
## 1691 0.0000 1609.01163
## 1692 0.0000 1609.01163
## 1693 0.0000 1609.01163
## 1694 0.0000 1609.01163
## 1695 0.0000 1609.01163
## 1696 0.0000 1609.01163
## 1697 0.0000 1609.01163
## 1698 0.0000 1609.01163
## 1699 0.0000 1609.01163
## 1700 0.0000 1609.01163
## 1701 0.0000 1609.01163
## 1702 0.0000 1609.01163
## 1703 0.0000 1609.01163
## 1704 0.0000 1609.01163
## 1705 436.0465 0.00000
## 1706 436.0465 0.00000
## 1707 436.0465 0.00000
## 1708 436.0465 0.00000
## 1709 436.0465 0.00000
## 1710 436.0465 0.00000
## 1711 436.0465 0.00000
## 1712 436.0465 0.00000
## 1713 436.0465 0.00000
## 1714 436.0465 0.00000
## 1715 436.0465 0.00000
## 1716 436.0465 0.00000
## 1717 436.0465 0.00000
## 1718 436.0465 0.00000
## 1719 436.0465 0.00000
## 1720 436.0465 0.00000
## 1721 436.0465 0.00000
## 1722 436.0465 0.00000
## 1723 436.0465 0.00000
## 1724 436.0465 0.00000
## 1725 436.0465 0.00000
## 1726 436.0465 0.00000
## 1727 436.0465 0.00000
## 1728 436.0465 0.00000
## 1729 5161.0465 883.43023
## 1730 5161.0465 883.43023
## 1731 5161.0465 883.43023
## 1732 5161.0465 883.43023
## 1733 5161.0465 883.43023
## 1734 5161.0465 883.43023
## 1735 5161.0465 883.43023
## 1736 5161.0465 883.43023
## 1737 5161.0465 883.43023
## 1738 5161.0465 883.43023
## 1739 5161.0465 883.43023
## 1740 5161.0465 883.43023
## 1741 5161.0465 883.43023
## 1742 5161.0465 883.43023
## 1743 5161.0465 883.43023
## 1744 5161.0465 883.43023
## 1745 5161.0465 883.43023
## 1746 5161.0465 883.43023
## 1747 5161.0465 883.43023
## 1748 5161.0465 883.43023
## 1749 5161.0465 883.43023
## 1750 5161.0465 883.43023
## 1751 5161.0465 883.43023
## 1752 5161.0465 883.43023
## 1753 4890.6977 3221.51163
## 1754 4890.6977 3221.51163
## 1755 4890.6977 3221.51163
## 1756 4890.6977 3221.51163
## 1757 4890.6977 3221.51163
## 1758 4890.6977 3221.51163
## 1759 4890.6977 3221.51163
## 1760 4890.6977 3221.51163
## 1761 4890.6977 3221.51163
## 1762 4890.6977 3221.51163
## 1763 4890.6977 3221.51163
## 1764 4890.6977 3221.51163
## 1765 4890.6977 3221.51163
## 1766 4890.6977 3221.51163
## 1767 4890.6977 3221.51163
## 1768 4890.6977 3221.51163
## 1769 4890.6977 3221.51163
## 1770 4890.6977 3221.51163
## 1771 4890.6977 3221.51163
## 1772 4890.6977 3221.51163
## 1773 4890.6977 3221.51163
## 1774 4890.6977 3221.51163
## 1775 4890.6977 3221.51163
## 1776 4890.6977 3221.51163
## 1777 570.3488 322.67442
## 1778 570.3488 322.67442
## 1779 570.3488 322.67442
## 1780 570.3488 322.67442
## 1781 570.3488 322.67442
## 1782 570.3488 322.67442
## 1783 570.3488 322.67442
## 1784 570.3488 322.67442
## 1785 570.3488 322.67442
## 1786 570.3488 322.67442
## 1787 570.3488 322.67442
## 1788 570.3488 322.67442
## 1789 570.3488 322.67442
## 1790 570.3488 322.67442
## 1791 570.3488 322.67442
## 1792 570.3488 322.67442
## 1793 570.3488 322.67442
## 1794 570.3488 322.67442
## 1795 570.3488 322.67442
## 1796 570.3488 322.67442
## 1797 570.3488 322.67442
## 1798 570.3488 322.67442
## 1799 570.3488 322.67442
## 1800 570.3488 322.67442
## 1801 2830.8140 3005.23256
## 1802 2830.8140 3005.23256
## 1803 2830.8140 3005.23256
## 1804 2830.8140 3005.23256
## 1805 2830.8140 3005.23256
## 1806 2830.8140 3005.23256
## 1807 2830.8140 3005.23256
## 1808 2830.8140 3005.23256
## 1809 2830.8140 3005.23256
## 1810 2830.8140 3005.23256
## 1811 2830.8140 3005.23256
## 1812 2830.8140 3005.23256
## 1813 2830.8140 3005.23256
## 1814 2830.8140 3005.23256
## 1815 2830.8140 3005.23256
## 1816 2830.8140 3005.23256
## 1817 2830.8140 3005.23256
## 1818 2830.8140 3005.23256
## 1819 2830.8140 3005.23256
## 1820 2830.8140 3005.23256
## 1821 2830.8140 3005.23256
## 1822 2830.8140 3005.23256
## 1823 2830.8140 3005.23256
## 1824 2830.8140 3005.23256
## 1825 1735.4651 409.88372
## 1826 1735.4651 409.88372
## 1827 1735.4651 409.88372
## 1828 1735.4651 409.88372
## 1829 1735.4651 409.88372
## 1830 1735.4651 409.88372
## 1831 1735.4651 409.88372
## 1832 1735.4651 409.88372
## 1833 1735.4651 409.88372
## 1834 1735.4651 409.88372
## 1835 1735.4651 409.88372
## 1836 1735.4651 409.88372
## 1837 1735.4651 409.88372
## 1838 1735.4651 409.88372
## 1839 1735.4651 409.88372
## 1840 1735.4651 409.88372
## 1841 1735.4651 409.88372
## 1842 1735.4651 409.88372
## 1843 1735.4651 409.88372
## 1844 1735.4651 409.88372
## 1845 1735.4651 409.88372
## 1846 1735.4651 409.88372
## 1847 1735.4651 409.88372
## 1848 1735.4651 409.88372
## 1849 2040.6977 2406.97674
## 1850 2040.6977 2406.97674
## 1851 2040.6977 2406.97674
## 1852 2040.6977 2406.97674
## 1853 2040.6977 2406.97674
## 1854 2040.6977 2406.97674
## 1855 2040.6977 2406.97674
## 1856 2040.6977 2406.97674
## 1857 2040.6977 2406.97674
## 1858 2040.6977 2406.97674
## 1859 2040.6977 2406.97674
## 1860 2040.6977 2406.97674
## 1861 2040.6977 2406.97674
## 1862 2040.6977 2406.97674
## 1863 2040.6977 2406.97674
## 1864 2040.6977 2406.97674
## 1865 2040.6977 2406.97674
## 1866 2040.6977 2406.97674
## 1867 2040.6977 2406.97674
## 1868 2040.6977 2406.97674
## 1869 2040.6977 2406.97674
## 1870 2040.6977 2406.97674
## 1871 2040.6977 2406.97674
## 1872 2040.6977 2406.97674
## 1873 0.0000 2132.26744
## 1874 0.0000 2132.26744
## 1875 0.0000 2132.26744
## 1876 0.0000 2132.26744
## 1877 0.0000 2132.26744
## 1878 0.0000 2132.26744
## 1879 0.0000 2132.26744
## 1880 0.0000 2132.26744
## 1881 0.0000 2132.26744
## 1882 0.0000 2132.26744
## 1883 0.0000 2132.26744
## 1884 0.0000 2132.26744
## 1885 0.0000 2132.26744
## 1886 0.0000 2132.26744
## 1887 0.0000 2132.26744
## 1888 0.0000 2132.26744
## 1889 0.0000 2132.26744
## 1890 0.0000 2132.26744
## 1891 0.0000 2132.26744
## 1892 0.0000 2132.26744
## 1893 0.0000 2132.26744
## 1894 0.0000 2132.26744
## 1895 0.0000 2132.26744
## 1896 0.0000 2132.26744
## 1897 453.4884 1848.83721
## 1898 453.4884 1848.83721
## 1899 453.4884 1848.83721
## 1900 453.4884 1848.83721
## 1901 453.4884 1848.83721
## 1902 453.4884 1848.83721
## 1903 453.4884 1848.83721
## 1904 453.4884 1848.83721
## 1905 453.4884 1848.83721
## 1906 453.4884 1848.83721
## 1907 453.4884 1848.83721
## 1908 453.4884 1848.83721
## 1909 453.4884 1848.83721
## 1910 453.4884 1848.83721
## 1911 453.4884 1848.83721
## 1912 453.4884 1848.83721
## 1913 453.4884 1848.83721
## 1914 453.4884 1848.83721
## 1915 453.4884 1848.83721
## 1916 453.4884 1848.83721
## 1917 453.4884 1848.83721
## 1918 453.4884 1848.83721
## 1919 453.4884 1848.83721
## 1920 453.4884 1848.83721
## 1921 5161.0465 883.43023
## 1922 5161.0465 883.43023
## 1923 5161.0465 883.43023
## 1924 5161.0465 883.43023
## 1925 5161.0465 883.43023
## 1926 5161.0465 883.43023
## 1927 5161.0465 883.43023
## 1928 5161.0465 883.43023
## 1929 5161.0465 883.43023
## 1930 5161.0465 883.43023
## 1931 5161.0465 883.43023
## 1932 5161.0465 883.43023
## 1933 5161.0465 883.43023
## 1934 5161.0465 883.43023
## 1935 5161.0465 883.43023
## 1936 5161.0465 883.43023
## 1937 5161.0465 883.43023
## 1938 5161.0465 883.43023
## 1939 5161.0465 883.43023
## 1940 5161.0465 883.43023
## 1941 5161.0465 883.43023
## 1942 5161.0465 883.43023
## 1943 5161.0465 883.43023
## 1944 5161.0465 883.43023
## 1945 0.0000 2014.53488
## 1946 0.0000 2014.53488
## 1947 0.0000 2014.53488
## 1948 0.0000 2014.53488
## 1949 0.0000 2014.53488
## 1950 0.0000 2014.53488
## 1951 0.0000 2014.53488
## 1952 0.0000 2014.53488
## 1953 0.0000 2014.53488
## 1954 0.0000 2014.53488
## 1955 0.0000 2014.53488
## 1956 0.0000 2014.53488
## 1957 0.0000 2014.53488
## 1958 0.0000 2014.53488
## 1959 0.0000 2014.53488
## 1960 0.0000 2014.53488
## 1961 0.0000 2014.53488
## 1962 0.0000 2014.53488
## 1963 0.0000 2014.53488
## 1964 0.0000 2014.53488
## 1965 0.0000 2014.53488
## 1966 0.0000 2014.53488
## 1967 0.0000 2014.53488
## 1968 0.0000 2014.53488
## 1969 1854.0698 1090.11628
## 1970 1854.0698 1090.11628
## 1971 1854.0698 1090.11628
## 1972 1854.0698 1090.11628
## 1973 1854.0698 1090.11628
## 1974 1854.0698 1090.11628
## 1975 1854.0698 1090.11628
## 1976 1854.0698 1090.11628
## 1977 1854.0698 1090.11628
## 1978 1854.0698 1090.11628
## 1979 1854.0698 1090.11628
## 1980 1854.0698 1090.11628
## 1981 1854.0698 1090.11628
## 1982 1854.0698 1090.11628
## 1983 1854.0698 1090.11628
## 1984 1854.0698 1090.11628
## 1985 1854.0698 1090.11628
## 1986 1854.0698 1090.11628
## 1987 1854.0698 1090.11628
## 1988 1854.0698 1090.11628
## 1989 1854.0698 1090.11628
## 1990 1854.0698 1090.11628
## 1991 1854.0698 1090.11628
## 1992 1854.0698 1090.11628
## 1993 1852.3256 3636.62791
## 1994 1852.3256 3636.62791
## 1995 1852.3256 3636.62791
## 1996 1852.3256 3636.62791
## 1997 1852.3256 3636.62791
## 1998 1852.3256 3636.62791
## 1999 1852.3256 3636.62791
## 2000 1852.3256 3636.62791
## 2001 1852.3256 3636.62791
## 2002 1852.3256 3636.62791
## 2003 1852.3256 3636.62791
## 2004 1852.3256 3636.62791
## 2005 1852.3256 3636.62791
## 2006 1852.3256 3636.62791
## 2007 1852.3256 3636.62791
## 2008 1852.3256 3636.62791
## 2009 1852.3256 3636.62791
## 2010 1852.3256 3636.62791
## 2011 1852.3256 3636.62791
## 2012 1852.3256 3636.62791
## 2013 1852.3256 3636.62791
## 2014 1852.3256 3636.62791
## 2015 1852.3256 3636.62791
## 2016 1852.3256 3636.62791
## 2017 2572.6744 1709.30233
## 2018 2572.6744 1709.30233
## 2019 2572.6744 1709.30233
## 2020 2572.6744 1709.30233
## 2021 2572.6744 1709.30233
## 2022 2572.6744 1709.30233
## 2023 2572.6744 1709.30233
## 2024 2572.6744 1709.30233
## 2025 2572.6744 1709.30233
## 2026 2572.6744 1709.30233
## 2027 2572.6744 1709.30233
## 2028 2572.6744 1709.30233
## 2029 2572.6744 1709.30233
## 2030 2572.6744 1709.30233
## 2031 2572.6744 1709.30233
## 2032 2572.6744 1709.30233
## 2033 2572.6744 1709.30233
## 2034 2572.6744 1709.30233
## 2035 2572.6744 1709.30233
## 2036 2572.6744 1709.30233
## 2037 2572.6744 1709.30233
## 2038 2572.6744 1709.30233
## 2039 2572.6744 1709.30233
## 2040 2572.6744 1709.30233
## 2041 392.4419 540.69767
## 2042 392.4419 540.69767
## 2043 392.4419 540.69767
## 2044 392.4419 540.69767
## 2045 392.4419 540.69767
## 2046 392.4419 540.69767
## 2047 392.4419 540.69767
## 2048 392.4419 540.69767
## 2049 392.4419 540.69767
## 2050 392.4419 540.69767
## 2051 392.4419 540.69767
## 2052 392.4419 540.69767
## 2053 392.4419 540.69767
## 2054 392.4419 540.69767
## 2055 392.4419 540.69767
## 2056 392.4419 540.69767
## 2057 392.4419 540.69767
## 2058 392.4419 540.69767
## 2059 392.4419 540.69767
## 2060 392.4419 540.69767
## 2061 392.4419 540.69767
## 2062 392.4419 540.69767
## 2063 392.4419 540.69767
## 2064 392.4419 540.69767
## 2065 0.0000 1263.66279
## 2066 0.0000 1263.66279
## 2067 0.0000 1263.66279
## 2068 0.0000 1263.66279
## 2069 0.0000 1263.66279
## 2070 0.0000 1263.66279
## 2071 0.0000 1263.66279
## 2072 0.0000 1263.66279
## 2073 0.0000 1263.66279
## 2074 0.0000 1263.66279
## 2075 0.0000 1263.66279
## 2076 0.0000 1263.66279
## 2077 0.0000 1263.66279
## 2078 0.0000 1263.66279
## 2079 0.0000 1263.66279
## 2080 0.0000 1263.66279
## 2081 0.0000 1263.66279
## 2082 0.0000 1263.66279
## 2083 0.0000 1263.66279
## 2084 0.0000 1263.66279
## 2085 0.0000 1263.66279
## 2086 0.0000 1263.66279
## 2087 0.0000 1263.66279
## 2088 0.0000 1263.66279
## 2089 422.9651 1063.95349
## 2090 422.9651 1063.95349
## 2091 422.9651 1063.95349
## 2092 422.9651 1063.95349
## 2093 422.9651 1063.95349
## 2094 422.9651 1063.95349
## 2095 422.9651 1063.95349
## 2096 422.9651 1063.95349
## 2097 422.9651 1063.95349
## 2098 422.9651 1063.95349
## 2099 422.9651 1063.95349
## 2100 422.9651 1063.95349
## 2101 422.9651 1063.95349
## 2102 422.9651 1063.95349
## 2103 422.9651 1063.95349
## 2104 422.9651 1063.95349
## 2105 422.9651 1063.95349
## 2106 422.9651 1063.95349
## 2107 422.9651 1063.95349
## 2108 422.9651 1063.95349
## 2109 422.9651 1063.95349
## 2110 422.9651 1063.95349
## 2111 422.9651 1063.95349
## 2112 422.9651 1063.95349
## 2113 5161.0465 883.43023
## 2114 5161.0465 883.43023
## 2115 5161.0465 883.43023
## 2116 5161.0465 883.43023
## 2117 5161.0465 883.43023
## 2118 5161.0465 883.43023
## 2119 5161.0465 883.43023
## 2120 5161.0465 883.43023
## 2121 5161.0465 883.43023
## 2122 5161.0465 883.43023
## 2123 5161.0465 883.43023
## 2124 5161.0465 883.43023
## 2125 5161.0465 883.43023
## 2126 5161.0465 883.43023
## 2127 5161.0465 883.43023
## 2128 5161.0465 883.43023
## 2129 5161.0465 883.43023
## 2130 5161.0465 883.43023
## 2131 5161.0465 883.43023
## 2132 5161.0465 883.43023
## 2133 5161.0465 883.43023
## 2134 5161.0465 883.43023
## 2135 5161.0465 883.43023
## 2136 5161.0465 883.43023
## 2137 5720.9302 5869.18605
## 2138 5720.9302 5869.18605
## 2139 5720.9302 5869.18605
## 2140 5720.9302 5869.18605
## 2141 5720.9302 5869.18605
## 2142 5720.9302 5869.18605
## 2143 5720.9302 5869.18605
## 2144 5720.9302 5869.18605
## 2145 5720.9302 5869.18605
## 2146 5720.9302 5869.18605
## 2147 5720.9302 5869.18605
## 2148 5720.9302 5869.18605
## 2149 5720.9302 5869.18605
## 2150 5720.9302 5869.18605
## 2151 5720.9302 5869.18605
## 2152 5720.9302 5869.18605
## 2153 5720.9302 5869.18605
## 2154 5720.9302 5869.18605
## 2155 5720.9302 5869.18605
## 2156 5720.9302 5869.18605
## 2157 5720.9302 5869.18605
## 2158 5720.9302 5869.18605
## 2159 5720.9302 5869.18605
## 2160 5720.9302 5869.18605
## 2161 214.5349 0.00000
## 2162 214.5349 0.00000
## 2163 214.5349 0.00000
## 2164 214.5349 0.00000
## 2165 214.5349 0.00000
## 2166 214.5349 0.00000
## 2167 214.5349 0.00000
## 2168 214.5349 0.00000
## 2169 214.5349 0.00000
## 2170 214.5349 0.00000
## 2171 214.5349 0.00000
## 2172 214.5349 0.00000
## 2173 214.5349 0.00000
## 2174 214.5349 0.00000
## 2175 214.5349 0.00000
## 2176 214.5349 0.00000
## 2177 214.5349 0.00000
## 2178 214.5349 0.00000
## 2179 214.5349 0.00000
## 2180 214.5349 0.00000
## 2181 214.5349 0.00000
## 2182 214.5349 0.00000
## 2183 214.5349 0.00000
## 2184 214.5349 0.00000
## 2185 3535.4651 0.00000
## 2186 3535.4651 0.00000
## 2187 3535.4651 0.00000
## 2188 3535.4651 0.00000
## 2189 3535.4651 0.00000
## 2190 3535.4651 0.00000
## 2191 3535.4651 0.00000
## 2192 3535.4651 0.00000
## 2193 3535.4651 0.00000
## 2194 3535.4651 0.00000
## 2195 3535.4651 0.00000
## 2196 3535.4651 0.00000
## 2197 3535.4651 0.00000
## 2198 3535.4651 0.00000
## 2199 3535.4651 0.00000
## 2200 3535.4651 0.00000
## 2201 3535.4651 0.00000
## 2202 3535.4651 0.00000
## 2203 3535.4651 0.00000
## 2204 3535.4651 0.00000
## 2205 3535.4651 0.00000
## 2206 3535.4651 0.00000
## 2207 3535.4651 0.00000
## 2208 3535.4651 0.00000
## 2209 1988.3721 0.00000
## 2210 1988.3721 0.00000
## 2211 1988.3721 0.00000
## 2212 1988.3721 0.00000
## 2213 1988.3721 0.00000
## 2214 1988.3721 0.00000
## 2215 1988.3721 0.00000
## 2216 1988.3721 0.00000
## 2217 1988.3721 0.00000
## 2218 1988.3721 0.00000
## 2219 1988.3721 0.00000
## 2220 1988.3721 0.00000
## 2221 1988.3721 0.00000
## 2222 1988.3721 0.00000
## 2223 1988.3721 0.00000
## 2224 1988.3721 0.00000
## 2225 1988.3721 0.00000
## 2226 1988.3721 0.00000
## 2227 1988.3721 0.00000
## 2228 1988.3721 0.00000
## 2229 1988.3721 0.00000
## 2230 1988.3721 0.00000
## 2231 1988.3721 0.00000
## 2232 1988.3721 0.00000
## 2233 1665.6977 976.74419
## 2234 1665.6977 976.74419
## 2235 1665.6977 976.74419
## 2236 1665.6977 976.74419
## 2237 1665.6977 976.74419
## 2238 1665.6977 976.74419
## 2239 1665.6977 976.74419
## 2240 1665.6977 976.74419
## 2241 1665.6977 976.74419
## 2242 1665.6977 976.74419
## 2243 1665.6977 976.74419
## 2244 1665.6977 976.74419
## 2245 1665.6977 976.74419
## 2246 1665.6977 976.74419
## 2247 1665.6977 976.74419
## 2248 1665.6977 976.74419
## 2249 1665.6977 976.74419
## 2250 1665.6977 976.74419
## 2251 1665.6977 976.74419
## 2252 1665.6977 976.74419
## 2253 1665.6977 976.74419
## 2254 1665.6977 976.74419
## 2255 1665.6977 976.74419
## 2256 1665.6977 976.74419
## 2257 911.3372 1442.44186
## 2258 911.3372 1442.44186
## 2259 911.3372 1442.44186
## 2260 911.3372 1442.44186
## 2261 911.3372 1442.44186
## 2262 911.3372 1442.44186
## 2263 911.3372 1442.44186
## 2264 911.3372 1442.44186
## 2265 911.3372 1442.44186
## 2266 911.3372 1442.44186
## 2267 911.3372 1442.44186
## 2268 911.3372 1442.44186
## 2269 911.3372 1442.44186
## 2270 911.3372 1442.44186
## 2271 911.3372 1442.44186
## 2272 911.3372 1442.44186
## 2273 911.3372 1442.44186
## 2274 911.3372 1442.44186
## 2275 911.3372 1442.44186
## 2276 911.3372 1442.44186
## 2277 911.3372 1442.44186
## 2278 911.3372 1442.44186
## 2279 911.3372 1442.44186
## 2280 911.3372 1442.44186
## 2281 0.0000 1068.31395
## 2282 0.0000 1068.31395
## 2283 0.0000 1068.31395
## 2284 0.0000 1068.31395
## 2285 0.0000 1068.31395
## 2286 0.0000 1068.31395
## 2287 0.0000 1068.31395
## 2288 0.0000 1068.31395
## 2289 0.0000 1068.31395
## 2290 0.0000 1068.31395
## 2291 0.0000 1068.31395
## 2292 0.0000 1068.31395
## 2293 0.0000 1068.31395
## 2294 0.0000 1068.31395
## 2295 0.0000 1068.31395
## 2296 0.0000 1068.31395
## 2297 0.0000 1068.31395
## 2298 0.0000 1068.31395
## 2299 0.0000 1068.31395
## 2300 0.0000 1068.31395
## 2301 0.0000 1068.31395
## 2302 0.0000 1068.31395
## 2303 0.0000 1068.31395
## 2304 0.0000 1068.31395
## 2305 5161.0465 883.43023
## 2306 5161.0465 883.43023
## 2307 5161.0465 883.43023
## 2308 5161.0465 883.43023
## 2309 5161.0465 883.43023
## 2310 5161.0465 883.43023
## 2311 5161.0465 883.43023
## 2312 5161.0465 883.43023
## 2313 5161.0465 883.43023
## 2314 5161.0465 883.43023
## 2315 5161.0465 883.43023
## 2316 5161.0465 883.43023
## 2317 5161.0465 883.43023
## 2318 5161.0465 883.43023
## 2319 5161.0465 883.43023
## 2320 5161.0465 883.43023
## 2321 5161.0465 883.43023
## 2322 5161.0465 883.43023
## 2323 5161.0465 883.43023
## 2324 5161.0465 883.43023
## 2325 5161.0465 883.43023
## 2326 5161.0465 883.43023
## 2327 5161.0465 883.43023
## 2328 5161.0465 883.43023
## 2329 915.6977 305.23256
## 2330 915.6977 305.23256
## 2331 915.6977 305.23256
## 2332 915.6977 305.23256
## 2333 915.6977 305.23256
## 2334 915.6977 305.23256
## 2335 915.6977 305.23256
## 2336 915.6977 305.23256
## 2337 915.6977 305.23256
## 2338 915.6977 305.23256
## 2339 915.6977 305.23256
## 2340 915.6977 305.23256
## 2341 915.6977 305.23256
## 2342 915.6977 305.23256
## 2343 915.6977 305.23256
## 2344 915.6977 305.23256
## 2345 915.6977 305.23256
## 2346 915.6977 305.23256
## 2347 915.6977 305.23256
## 2348 915.6977 305.23256
## 2349 915.6977 305.23256
## 2350 915.6977 305.23256
## 2351 915.6977 305.23256
## 2352 915.6977 305.23256
## 2353 755.2326 1029.06977
## 2354 755.2326 1029.06977
## 2355 755.2326 1029.06977
## 2356 755.2326 1029.06977
## 2357 755.2326 1029.06977
## 2358 755.2326 1029.06977
## 2359 755.2326 1029.06977
## 2360 755.2326 1029.06977
## 2361 755.2326 1029.06977
## 2362 755.2326 1029.06977
## 2363 755.2326 1029.06977
## 2364 755.2326 1029.06977
## 2365 755.2326 1029.06977
## 2366 755.2326 1029.06977
## 2367 755.2326 1029.06977
## 2368 755.2326 1029.06977
## 2369 755.2326 1029.06977
## 2370 755.2326 1029.06977
## 2371 755.2326 1029.06977
## 2372 755.2326 1029.06977
## 2373 755.2326 1029.06977
## 2374 755.2326 1029.06977
## 2375 755.2326 1029.06977
## 2376 755.2326 1029.06977
## 2377 2576.1628 2581.39535
## 2378 2576.1628 2581.39535
## 2379 2576.1628 2581.39535
## 2380 2576.1628 2581.39535
## 2381 2576.1628 2581.39535
## 2382 2576.1628 2581.39535
## 2383 2576.1628 2581.39535
## 2384 2576.1628 2581.39535
## 2385 2576.1628 2581.39535
## 2386 2576.1628 2581.39535
## 2387 2576.1628 2581.39535
## 2388 2576.1628 2581.39535
## 2389 2576.1628 2581.39535
## 2390 2576.1628 2581.39535
## 2391 2576.1628 2581.39535
## 2392 2576.1628 2581.39535
## 2393 2576.1628 2581.39535
## 2394 2576.1628 2581.39535
## 2395 2576.1628 2581.39535
## 2396 2576.1628 2581.39535
## 2397 2576.1628 2581.39535
## 2398 2576.1628 2581.39535
## 2399 2576.1628 2581.39535
## 2400 2576.1628 2581.39535
## 2401 1273.2558 1648.25581
## 2402 1273.2558 1648.25581
## 2403 1273.2558 1648.25581
## 2404 1273.2558 1648.25581
## 2405 1273.2558 1648.25581
## 2406 1273.2558 1648.25581
## 2407 1273.2558 1648.25581
## 2408 1273.2558 1648.25581
## 2409 1273.2558 1648.25581
## 2410 1273.2558 1648.25581
## 2411 1273.2558 1648.25581
## 2412 1273.2558 1648.25581
## 2413 1273.2558 1648.25581
## 2414 1273.2558 1648.25581
## 2415 1273.2558 1648.25581
## 2416 1273.2558 1648.25581
## 2417 1273.2558 1648.25581
## 2418 1273.2558 1648.25581
## 2419 1273.2558 1648.25581
## 2420 1273.2558 1648.25581
## 2421 1273.2558 1648.25581
## 2422 1273.2558 1648.25581
## 2423 1273.2558 1648.25581
## 2424 1273.2558 1648.25581
## 2425 3479.6512 366.27907
## 2426 3479.6512 366.27907
## 2427 3479.6512 366.27907
## 2428 3479.6512 366.27907
## 2429 3479.6512 366.27907
## 2430 3479.6512 366.27907
## 2431 3479.6512 366.27907
## 2432 3479.6512 366.27907
## 2433 3479.6512 366.27907
## 2434 3479.6512 366.27907
## 2435 3479.6512 366.27907
## 2436 3479.6512 366.27907
## 2437 3479.6512 366.27907
## 2438 3479.6512 366.27907
## 2439 3479.6512 366.27907
## 2440 3479.6512 366.27907
## 2441 3479.6512 366.27907
## 2442 3479.6512 366.27907
## 2443 3479.6512 366.27907
## 2444 3479.6512 366.27907
## 2445 3479.6512 366.27907
## 2446 3479.6512 366.27907
## 2447 3479.6512 366.27907
## 2448 3479.6512 366.27907
## 2449 244.1860 596.51163
## 2450 244.1860 596.51163
## 2451 244.1860 596.51163
## 2452 244.1860 596.51163
## 2453 244.1860 596.51163
## 2454 244.1860 596.51163
## 2455 244.1860 596.51163
## 2456 244.1860 596.51163
## 2457 244.1860 596.51163
## 2458 244.1860 596.51163
## 2459 244.1860 596.51163
## 2460 244.1860 596.51163
## 2461 244.1860 596.51163
## 2462 244.1860 596.51163
## 2463 244.1860 596.51163
## 2464 244.1860 596.51163
## 2465 244.1860 596.51163
## 2466 244.1860 596.51163
## 2467 244.1860 596.51163
## 2468 244.1860 596.51163
## 2469 244.1860 596.51163
## 2470 244.1860 596.51163
## 2471 244.1860 596.51163
## 2472 244.1860 596.51163
## 2473 414.2442 0.00000
## 2474 414.2442 0.00000
## 2475 414.2442 0.00000
## 2476 414.2442 0.00000
## 2477 414.2442 0.00000
## 2478 414.2442 0.00000
## 2479 414.2442 0.00000
## 2480 414.2442 0.00000
## 2481 414.2442 0.00000
## 2482 414.2442 0.00000
## 2483 414.2442 0.00000
## 2484 414.2442 0.00000
## 2485 414.2442 0.00000
## 2486 414.2442 0.00000
## 2487 414.2442 0.00000
## 2488 414.2442 0.00000
## 2489 414.2442 0.00000
## 2490 414.2442 0.00000
## 2491 414.2442 0.00000
## 2492 414.2442 0.00000
## 2493 414.2442 0.00000
## 2494 414.2442 0.00000
## 2495 414.2442 0.00000
## 2496 414.2442 0.00000
## 2497 5161.0465 883.43023
## 2498 5161.0465 883.43023
## 2499 5161.0465 883.43023
## 2500 5161.0465 883.43023
## 2501 5161.0465 883.43023
## 2502 5161.0465 883.43023
## 2503 5161.0465 883.43023
## 2504 5161.0465 883.43023
## 2505 5161.0465 883.43023
## 2506 5161.0465 883.43023
## 2507 5161.0465 883.43023
## 2508 5161.0465 883.43023
## 2509 5161.0465 883.43023
## 2510 5161.0465 883.43023
## 2511 5161.0465 883.43023
## 2512 5161.0465 883.43023
## 2513 5161.0465 883.43023
## 2514 5161.0465 883.43023
## 2515 5161.0465 883.43023
## 2516 5161.0465 883.43023
## 2517 5161.0465 883.43023
## 2518 5161.0465 883.43023
## 2519 5161.0465 883.43023
## 2520 5161.0465 883.43023
## 2521 2494.1860 863.37209
## 2522 2494.1860 863.37209
## 2523 2494.1860 863.37209
## 2524 2494.1860 863.37209
## 2525 2494.1860 863.37209
## 2526 2494.1860 863.37209
## 2527 2494.1860 863.37209
## 2528 2494.1860 863.37209
## 2529 2494.1860 863.37209
## 2530 2494.1860 863.37209
## 2531 2494.1860 863.37209
## 2532 2494.1860 863.37209
## 2533 2494.1860 863.37209
## 2534 2494.1860 863.37209
## 2535 2494.1860 863.37209
## 2536 2494.1860 863.37209
## 2537 2494.1860 863.37209
## 2538 2494.1860 863.37209
## 2539 2494.1860 863.37209
## 2540 2494.1860 863.37209
## 2541 2494.1860 863.37209
## 2542 2494.1860 863.37209
## 2543 2494.1860 863.37209
## 2544 2494.1860 863.37209
## 2545 3048.8372 1107.55814
## 2546 3048.8372 1107.55814
## 2547 3048.8372 1107.55814
## 2548 3048.8372 1107.55814
## 2549 3048.8372 1107.55814
## 2550 3048.8372 1107.55814
## 2551 3048.8372 1107.55814
## 2552 3048.8372 1107.55814
## 2553 3048.8372 1107.55814
## 2554 3048.8372 1107.55814
## 2555 3048.8372 1107.55814
## 2556 3048.8372 1107.55814
## 2557 3048.8372 1107.55814
## 2558 3048.8372 1107.55814
## 2559 3048.8372 1107.55814
## 2560 3048.8372 1107.55814
## 2561 3048.8372 1107.55814
## 2562 3048.8372 1107.55814
## 2563 3048.8372 1107.55814
## 2564 3048.8372 1107.55814
## 2565 3048.8372 1107.55814
## 2566 3048.8372 1107.55814
## 2567 3048.8372 1107.55814
## 2568 3048.8372 1107.55814
## 2569 483.1395 1229.65116
## 2570 483.1395 1229.65116
## 2571 483.1395 1229.65116
## 2572 483.1395 1229.65116
## 2573 483.1395 1229.65116
## 2574 483.1395 1229.65116
## 2575 483.1395 1229.65116
## 2576 483.1395 1229.65116
## 2577 483.1395 1229.65116
## 2578 483.1395 1229.65116
## 2579 483.1395 1229.65116
## 2580 483.1395 1229.65116
## 2581 483.1395 1229.65116
## 2582 483.1395 1229.65116
## 2583 483.1395 1229.65116
## 2584 483.1395 1229.65116
## 2585 483.1395 1229.65116
## 2586 483.1395 1229.65116
## 2587 483.1395 1229.65116
## 2588 483.1395 1229.65116
## 2589 483.1395 1229.65116
## 2590 483.1395 1229.65116
## 2591 483.1395 1229.65116
## 2592 483.1395 1229.65116
## 2593 218.0233 1055.23256
## 2594 218.0233 1055.23256
## 2595 218.0233 1055.23256
## 2596 218.0233 1055.23256
## 2597 218.0233 1055.23256
## 2598 218.0233 1055.23256
## 2599 218.0233 1055.23256
## 2600 218.0233 1055.23256
## 2601 218.0233 1055.23256
## 2602 218.0233 1055.23256
## 2603 218.0233 1055.23256
## 2604 218.0233 1055.23256
## 2605 218.0233 1055.23256
## 2606 218.0233 1055.23256
## 2607 218.0233 1055.23256
## 2608 218.0233 1055.23256
## 2609 218.0233 1055.23256
## 2610 218.0233 1055.23256
## 2611 218.0233 1055.23256
## 2612 218.0233 1055.23256
## 2613 218.0233 1055.23256
## 2614 218.0233 1055.23256
## 2615 218.0233 1055.23256
## 2616 218.0233 1055.23256
## 2617 0.0000 1561.04651
## 2618 0.0000 1561.04651
## 2619 0.0000 1561.04651
## 2620 0.0000 1561.04651
## 2621 0.0000 1561.04651
## 2622 0.0000 1561.04651
## 2623 0.0000 1561.04651
## 2624 0.0000 1561.04651
## 2625 0.0000 1561.04651
## 2626 0.0000 1561.04651
## 2627 0.0000 1561.04651
## 2628 0.0000 1561.04651
## 2629 0.0000 1561.04651
## 2630 0.0000 1561.04651
## 2631 0.0000 1561.04651
## 2632 0.0000 1561.04651
## 2633 0.0000 1561.04651
## 2634 0.0000 1561.04651
## 2635 0.0000 1561.04651
## 2636 0.0000 1561.04651
## 2637 0.0000 1561.04651
## 2638 0.0000 1561.04651
## 2639 0.0000 1561.04651
## 2640 0.0000 1561.04651
## 2641 0.0000 1690.98837
## 2642 0.0000 1690.98837
## 2643 0.0000 1690.98837
## 2644 0.0000 1690.98837
## 2645 0.0000 1690.98837
## 2646 0.0000 1690.98837
## 2647 0.0000 1690.98837
## 2648 0.0000 1690.98837
## 2649 0.0000 1690.98837
## 2650 0.0000 1690.98837
## 2651 0.0000 1690.98837
## 2652 0.0000 1690.98837
## 2653 0.0000 1690.98837
## 2654 0.0000 1690.98837
## 2655 0.0000 1690.98837
## 2656 0.0000 1690.98837
## 2657 0.0000 1690.98837
## 2658 0.0000 1690.98837
## 2659 0.0000 1690.98837
## 2660 0.0000 1690.98837
## 2661 0.0000 1690.98837
## 2662 0.0000 1690.98837
## 2663 0.0000 1690.98837
## 2664 0.0000 1690.98837
## 2665 436.0465 0.00000
## 2666 436.0465 0.00000
## 2667 436.0465 0.00000
## 2668 436.0465 0.00000
## 2669 436.0465 0.00000
## 2670 436.0465 0.00000
## 2671 436.0465 0.00000
## 2672 436.0465 0.00000
## 2673 436.0465 0.00000
## 2674 436.0465 0.00000
## 2675 436.0465 0.00000
## 2676 436.0465 0.00000
## 2677 436.0465 0.00000
## 2678 436.0465 0.00000
## 2679 436.0465 0.00000
## 2680 436.0465 0.00000
## 2681 436.0465 0.00000
## 2682 436.0465 0.00000
## 2683 436.0465 0.00000
## 2684 436.0465 0.00000
## 2685 436.0465 0.00000
## 2686 436.0465 0.00000
## 2687 436.0465 0.00000
## 2688 436.0465 0.00000
## 2689 5161.0465 883.43023
## 2690 5161.0465 883.43023
## 2691 5161.0465 883.43023
## 2692 5161.0465 883.43023
## 2693 5161.0465 883.43023
## 2694 5161.0465 883.43023
## 2695 5161.0465 883.43023
## 2696 5161.0465 883.43023
## 2697 5161.0465 883.43023
## 2698 5161.0465 883.43023
## 2699 5161.0465 883.43023
## 2700 5161.0465 883.43023
## 2701 5161.0465 883.43023
## 2702 5161.0465 883.43023
## 2703 5161.0465 883.43023
## 2704 5161.0465 883.43023
## 2705 5161.0465 883.43023
## 2706 5161.0465 883.43023
## 2707 5161.0465 883.43023
## 2708 5161.0465 883.43023
## 2709 5161.0465 883.43023
## 2710 5161.0465 883.43023
## 2711 5161.0465 883.43023
## 2712 5161.0465 883.43023
## 2713 4037.7907 3104.65116
## 2714 4037.7907 3104.65116
## 2715 4037.7907 3104.65116
## 2716 4037.7907 3104.65116
## 2717 4037.7907 3104.65116
## 2718 4037.7907 3104.65116
## 2719 4037.7907 3104.65116
## 2720 4037.7907 3104.65116
## 2721 4037.7907 3104.65116
## 2722 4037.7907 3104.65116
## 2723 4037.7907 3104.65116
## 2724 4037.7907 3104.65116
## 2725 4037.7907 3104.65116
## 2726 4037.7907 3104.65116
## 2727 4037.7907 3104.65116
## 2728 4037.7907 3104.65116
## 2729 4037.7907 3104.65116
## 2730 4037.7907 3104.65116
## 2731 4037.7907 3104.65116
## 2732 4037.7907 3104.65116
## 2733 4037.7907 3104.65116
## 2734 4037.7907 3104.65116
## 2735 4037.7907 3104.65116
## 2736 4037.7907 3104.65116
## 2737 450.0000 0.00000
## 2738 450.0000 0.00000
## 2739 450.0000 0.00000
## 2740 450.0000 0.00000
## 2741 450.0000 0.00000
## 2742 450.0000 0.00000
## 2743 450.0000 0.00000
## 2744 450.0000 0.00000
## 2745 450.0000 0.00000
## 2746 450.0000 0.00000
## 2747 450.0000 0.00000
## 2748 450.0000 0.00000
## 2749 450.0000 0.00000
## 2750 450.0000 0.00000
## 2751 450.0000 0.00000
## 2752 450.0000 0.00000
## 2753 450.0000 0.00000
## 2754 450.0000 0.00000
## 2755 450.0000 0.00000
## 2756 450.0000 0.00000
## 2757 450.0000 0.00000
## 2758 450.0000 0.00000
## 2759 450.0000 0.00000
## 2760 450.0000 0.00000
## 2761 2663.3721 2912.79070
## 2762 2663.3721 2912.79070
## 2763 2663.3721 2912.79070
## 2764 2663.3721 2912.79070
## 2765 2663.3721 2912.79070
## 2766 2663.3721 2912.79070
## 2767 2663.3721 2912.79070
## 2768 2663.3721 2912.79070
## 2769 2663.3721 2912.79070
## 2770 2663.3721 2912.79070
## 2771 2663.3721 2912.79070
## 2772 2663.3721 2912.79070
## 2773 2663.3721 2912.79070
## 2774 2663.3721 2912.79070
## 2775 2663.3721 2912.79070
## 2776 2663.3721 2912.79070
## 2777 2663.3721 2912.79070
## 2778 2663.3721 2912.79070
## 2779 2663.3721 2912.79070
## 2780 2663.3721 2912.79070
## 2781 2663.3721 2912.79070
## 2782 2663.3721 2912.79070
## 2783 2663.3721 2912.79070
## 2784 2663.3721 2912.79070
## 2785 1735.4651 409.88372
## 2786 1735.4651 409.88372
## 2787 1735.4651 409.88372
## 2788 1735.4651 409.88372
## 2789 1735.4651 409.88372
## 2790 1735.4651 409.88372
## 2791 1735.4651 409.88372
## 2792 1735.4651 409.88372
## 2793 1735.4651 409.88372
## 2794 1735.4651 409.88372
## 2795 1735.4651 409.88372
## 2796 1735.4651 409.88372
## 2797 1735.4651 409.88372
## 2798 1735.4651 409.88372
## 2799 1735.4651 409.88372
## 2800 1735.4651 409.88372
## 2801 1735.4651 409.88372
## 2802 1735.4651 409.88372
## 2803 1735.4651 409.88372
## 2804 1735.4651 409.88372
## 2805 1735.4651 409.88372
## 2806 1735.4651 409.88372
## 2807 1735.4651 409.88372
## 2808 1735.4651 409.88372
## 2809 1822.6744 2406.97674
## 2810 1822.6744 2406.97674
## 2811 1822.6744 2406.97674
## 2812 1822.6744 2406.97674
## 2813 1822.6744 2406.97674
## 2814 1822.6744 2406.97674
## 2815 1822.6744 2406.97674
## 2816 1822.6744 2406.97674
## 2817 1822.6744 2406.97674
## 2818 1822.6744 2406.97674
## 2819 1822.6744 2406.97674
## 2820 1822.6744 2406.97674
## 2821 1822.6744 2406.97674
## 2822 1822.6744 2406.97674
## 2823 1822.6744 2406.97674
## 2824 1822.6744 2406.97674
## 2825 1822.6744 2406.97674
## 2826 1822.6744 2406.97674
## 2827 1822.6744 2406.97674
## 2828 1822.6744 2406.97674
## 2829 1822.6744 2406.97674
## 2830 1822.6744 2406.97674
## 2831 1822.6744 2406.97674
## 2832 1822.6744 2406.97674
## 2833 0.0000 2214.24419
## 2834 0.0000 2214.24419
## 2835 0.0000 2214.24419
## 2836 0.0000 2214.24419
## 2837 0.0000 2214.24419
## 2838 0.0000 2214.24419
## 2839 0.0000 2214.24419
## 2840 0.0000 2214.24419
## 2841 0.0000 2214.24419
## 2842 0.0000 2214.24419
## 2843 0.0000 2214.24419
## 2844 0.0000 2214.24419
## 2845 0.0000 2214.24419
## 2846 0.0000 2214.24419
## 2847 0.0000 2214.24419
## 2848 0.0000 2214.24419
## 2849 0.0000 2214.24419
## 2850 0.0000 2214.24419
## 2851 0.0000 2214.24419
## 2852 0.0000 2214.24419
## 2853 0.0000 2214.24419
## 2854 0.0000 2214.24419
## 2855 0.0000 2214.24419
## 2856 0.0000 2214.24419
## 2857 453.4884 1848.83721
## 2858 453.4884 1848.83721
## 2859 453.4884 1848.83721
## 2860 453.4884 1848.83721
## 2861 453.4884 1848.83721
## 2862 453.4884 1848.83721
## 2863 453.4884 1848.83721
## 2864 453.4884 1848.83721
## 2865 453.4884 1848.83721
## 2866 453.4884 1848.83721
## 2867 453.4884 1848.83721
## 2868 453.4884 1848.83721
## 2869 453.4884 1848.83721
## 2870 453.4884 1848.83721
## 2871 453.4884 1848.83721
## 2872 453.4884 1848.83721
## 2873 453.4884 1848.83721
## 2874 453.4884 1848.83721
## 2875 453.4884 1848.83721
## 2876 453.4884 1848.83721
## 2877 453.4884 1848.83721
## 2878 453.4884 1848.83721
## 2879 453.4884 1848.83721
## 2880 453.4884 1848.83721
## 2881 5161.0465 883.43023
## 2882 5161.0465 883.43023
## 2883 5161.0465 883.43023
## 2884 5161.0465 883.43023
## 2885 5161.0465 883.43023
## 2886 5161.0465 883.43023
## 2887 5161.0465 883.43023
## 2888 5161.0465 883.43023
## 2889 5161.0465 883.43023
## 2890 5161.0465 883.43023
## 2891 5161.0465 883.43023
## 2892 5161.0465 883.43023
## 2893 5161.0465 883.43023
## 2894 5161.0465 883.43023
## 2895 5161.0465 883.43023
## 2896 5161.0465 883.43023
## 2897 5161.0465 883.43023
## 2898 5161.0465 883.43023
## 2899 5161.0465 883.43023
## 2900 5161.0465 883.43023
## 2901 5161.0465 883.43023
## 2902 5161.0465 883.43023
## 2903 5161.0465 883.43023
## 2904 5161.0465 883.43023
## 2905 102.9070 2150.58140
## 2906 102.9070 2150.58140
## 2907 102.9070 2150.58140
## 2908 102.9070 2150.58140
## 2909 102.9070 2150.58140
## 2910 102.9070 2150.58140
## 2911 102.9070 2150.58140
## 2912 102.9070 2150.58140
## 2913 102.9070 2150.58140
## 2914 102.9070 2150.58140
## 2915 102.9070 2150.58140
## 2916 102.9070 2150.58140
## 2917 102.9070 2150.58140
## 2918 102.9070 2150.58140
## 2919 102.9070 2150.58140
## 2920 102.9070 2150.58140
## 2921 102.9070 2150.58140
## 2922 102.9070 2150.58140
## 2923 102.9070 2150.58140
## 2924 102.9070 2150.58140
## 2925 102.9070 2150.58140
## 2926 102.9070 2150.58140
## 2927 102.9070 2150.58140
## 2928 102.9070 2150.58140
## 2929 1838.3721 1090.11628
## 2930 1838.3721 1090.11628
## 2931 1838.3721 1090.11628
## 2932 1838.3721 1090.11628
## 2933 1838.3721 1090.11628
## 2934 1838.3721 1090.11628
## 2935 1838.3721 1090.11628
## 2936 1838.3721 1090.11628
## 2937 1838.3721 1090.11628
## 2938 1838.3721 1090.11628
## 2939 1838.3721 1090.11628
## 2940 1838.3721 1090.11628
## 2941 1838.3721 1090.11628
## 2942 1838.3721 1090.11628
## 2943 1838.3721 1090.11628
## 2944 1838.3721 1090.11628
## 2945 1838.3721 1090.11628
## 2946 1838.3721 1090.11628
## 2947 1838.3721 1090.11628
## 2948 1838.3721 1090.11628
## 2949 1838.3721 1090.11628
## 2950 1838.3721 1090.11628
## 2951 1838.3721 1090.11628
## 2952 1838.3721 1090.11628
## 2953 1369.1860 3636.62791
## 2954 1369.1860 3636.62791
## 2955 1369.1860 3636.62791
## 2956 1369.1860 3636.62791
## 2957 1369.1860 3636.62791
## 2958 1369.1860 3636.62791
## 2959 1369.1860 3636.62791
## 2960 1369.1860 3636.62791
## 2961 1369.1860 3636.62791
## 2962 1369.1860 3636.62791
## 2963 1369.1860 3636.62791
## 2964 1369.1860 3636.62791
## 2965 1369.1860 3636.62791
## 2966 1369.1860 3636.62791
## 2967 1369.1860 3636.62791
## 2968 1369.1860 3636.62791
## 2969 1369.1860 3636.62791
## 2970 1369.1860 3636.62791
## 2971 1369.1860 3636.62791
## 2972 1369.1860 3636.62791
## 2973 1369.1860 3636.62791
## 2974 1369.1860 3636.62791
## 2975 1369.1860 3636.62791
## 2976 1369.1860 3636.62791
## 2977 2532.5581 1709.30233
## 2978 2532.5581 1709.30233
## 2979 2532.5581 1709.30233
## 2980 2532.5581 1709.30233
## 2981 2532.5581 1709.30233
## 2982 2532.5581 1709.30233
## 2983 2532.5581 1709.30233
## 2984 2532.5581 1709.30233
## 2985 2532.5581 1709.30233
## 2986 2532.5581 1709.30233
## 2987 2532.5581 1709.30233
## 2988 2532.5581 1709.30233
## 2989 2532.5581 1709.30233
## 2990 2532.5581 1709.30233
## 2991 2532.5581 1709.30233
## 2992 2532.5581 1709.30233
## 2993 2532.5581 1709.30233
## 2994 2532.5581 1709.30233
## 2995 2532.5581 1709.30233
## 2996 2532.5581 1709.30233
## 2997 2532.5581 1709.30233
## 2998 2532.5581 1709.30233
## 2999 2532.5581 1709.30233
## 3000 2532.5581 1709.30233
## 3001 392.4419 594.76744
## 3002 392.4419 594.76744
## 3003 392.4419 594.76744
## 3004 392.4419 594.76744
## 3005 392.4419 594.76744
## 3006 392.4419 594.76744
## 3007 392.4419 594.76744
## 3008 392.4419 594.76744
## 3009 392.4419 594.76744
## 3010 392.4419 594.76744
## 3011 392.4419 594.76744
## 3012 392.4419 594.76744
## 3013 392.4419 594.76744
## 3014 392.4419 594.76744
## 3015 392.4419 594.76744
## 3016 392.4419 594.76744
## 3017 392.4419 594.76744
## 3018 392.4419 594.76744
## 3019 392.4419 594.76744
## 3020 392.4419 594.76744
## 3021 392.4419 594.76744
## 3022 392.4419 594.76744
## 3023 392.4419 594.76744
## 3024 392.4419 594.76744
## 3025 213.6628 1181.68605
## 3026 213.6628 1181.68605
## 3027 213.6628 1181.68605
## 3028 213.6628 1181.68605
## 3029 213.6628 1181.68605
## 3030 213.6628 1181.68605
## 3031 213.6628 1181.68605
## 3032 213.6628 1181.68605
## 3033 213.6628 1181.68605
## 3034 213.6628 1181.68605
## 3035 213.6628 1181.68605
## 3036 213.6628 1181.68605
## 3037 213.6628 1181.68605
## 3038 213.6628 1181.68605
## 3039 213.6628 1181.68605
## 3040 213.6628 1181.68605
## 3041 213.6628 1181.68605
## 3042 213.6628 1181.68605
## 3043 213.6628 1181.68605
## 3044 213.6628 1181.68605
## 3045 213.6628 1181.68605
## 3046 213.6628 1181.68605
## 3047 213.6628 1181.68605
## 3048 213.6628 1181.68605
## 3049 504.0698 1172.96512
## 3050 504.0698 1172.96512
## 3051 504.0698 1172.96512
## 3052 504.0698 1172.96512
## 3053 504.0698 1172.96512
## 3054 504.0698 1172.96512
## 3055 504.0698 1172.96512
## 3056 504.0698 1172.96512
## 3057 504.0698 1172.96512
## 3058 504.0698 1172.96512
## 3059 504.0698 1172.96512
## 3060 504.0698 1172.96512
## 3061 504.0698 1172.96512
## 3062 504.0698 1172.96512
## 3063 504.0698 1172.96512
## 3064 504.0698 1172.96512
## 3065 504.0698 1172.96512
## 3066 504.0698 1172.96512
## 3067 504.0698 1172.96512
## 3068 504.0698 1172.96512
## 3069 504.0698 1172.96512
## 3070 504.0698 1172.96512
## 3071 504.0698 1172.96512
## 3072 504.0698 1172.96512
## 3073 5161.0465 883.43023
## 3074 5161.0465 883.43023
## 3075 5161.0465 883.43023
## 3076 5161.0465 883.43023
## 3077 5161.0465 883.43023
## 3078 5161.0465 883.43023
## 3079 5161.0465 883.43023
## 3080 5161.0465 883.43023
## 3081 5161.0465 883.43023
## 3082 5161.0465 883.43023
## 3083 5161.0465 883.43023
## 3084 5161.0465 883.43023
## 3085 5161.0465 883.43023
## 3086 5161.0465 883.43023
## 3087 5161.0465 883.43023
## 3088 5161.0465 883.43023
## 3089 5161.0465 883.43023
## 3090 5161.0465 883.43023
## 3091 5161.0465 883.43023
## 3092 5161.0465 883.43023
## 3093 5161.0465 883.43023
## 3094 5161.0465 883.43023
## 3095 5161.0465 883.43023
## 3096 5161.0465 883.43023
## 3097 5823.8372 6005.23256
## 3098 5823.8372 6005.23256
## 3099 5823.8372 6005.23256
## 3100 5823.8372 6005.23256
## 3101 5823.8372 6005.23256
## 3102 5823.8372 6005.23256
## 3103 5823.8372 6005.23256
## 3104 5823.8372 6005.23256
## 3105 5823.8372 6005.23256
## 3106 5823.8372 6005.23256
## 3107 5823.8372 6005.23256
## 3108 5823.8372 6005.23256
## 3109 5823.8372 6005.23256
## 3110 5823.8372 6005.23256
## 3111 5823.8372 6005.23256
## 3112 5823.8372 6005.23256
## 3113 5823.8372 6005.23256
## 3114 5823.8372 6005.23256
## 3115 5823.8372 6005.23256
## 3116 5823.8372 6005.23256
## 3117 5823.8372 6005.23256
## 3118 5823.8372 6005.23256
## 3119 5823.8372 6005.23256
## 3120 5823.8372 6005.23256
## 3121 198.8372 0.00000
## 3122 198.8372 0.00000
## 3123 198.8372 0.00000
## 3124 198.8372 0.00000
## 3125 198.8372 0.00000
## 3126 198.8372 0.00000
## 3127 198.8372 0.00000
## 3128 198.8372 0.00000
## 3129 198.8372 0.00000
## 3130 198.8372 0.00000
## 3131 198.8372 0.00000
## 3132 198.8372 0.00000
## 3133 198.8372 0.00000
## 3134 198.8372 0.00000
## 3135 198.8372 0.00000
## 3136 198.8372 0.00000
## 3137 198.8372 0.00000
## 3138 198.8372 0.00000
## 3139 198.8372 0.00000
## 3140 198.8372 0.00000
## 3141 198.8372 0.00000
## 3142 198.8372 0.00000
## 3143 198.8372 0.00000
## 3144 198.8372 0.00000
## 3145 3052.3256 0.00000
## 3146 3052.3256 0.00000
## 3147 3052.3256 0.00000
## 3148 3052.3256 0.00000
## 3149 3052.3256 0.00000
## 3150 3052.3256 0.00000
## 3151 3052.3256 0.00000
## 3152 3052.3256 0.00000
## 3153 3052.3256 0.00000
## 3154 3052.3256 0.00000
## 3155 3052.3256 0.00000
## 3156 3052.3256 0.00000
## 3157 3052.3256 0.00000
## 3158 3052.3256 0.00000
## 3159 3052.3256 0.00000
## 3160 3052.3256 0.00000
## 3161 3052.3256 0.00000
## 3162 3052.3256 0.00000
## 3163 3052.3256 0.00000
## 3164 3052.3256 0.00000
## 3165 3052.3256 0.00000
## 3166 3052.3256 0.00000
## 3167 3052.3256 0.00000
## 3168 3052.3256 0.00000
## 3169 1948.2558 0.00000
## 3170 1948.2558 0.00000
## 3171 1948.2558 0.00000
## 3172 1948.2558 0.00000
## 3173 1948.2558 0.00000
## 3174 1948.2558 0.00000
## 3175 1948.2558 0.00000
## 3176 1948.2558 0.00000
## 3177 1948.2558 0.00000
## 3178 1948.2558 0.00000
## 3179 1948.2558 0.00000
## 3180 1948.2558 0.00000
## 3181 1948.2558 0.00000
## 3182 1948.2558 0.00000
## 3183 1948.2558 0.00000
## 3184 1948.2558 0.00000
## 3185 1948.2558 0.00000
## 3186 1948.2558 0.00000
## 3187 1948.2558 0.00000
## 3188 1948.2558 0.00000
## 3189 1948.2558 0.00000
## 3190 1948.2558 0.00000
## 3191 1948.2558 0.00000
## 3192 1948.2558 0.00000
## 3193 1665.6977 1030.81395
## 3194 1665.6977 1030.81395
## 3195 1665.6977 1030.81395
## 3196 1665.6977 1030.81395
## 3197 1665.6977 1030.81395
## 3198 1665.6977 1030.81395
## 3199 1665.6977 1030.81395
## 3200 1665.6977 1030.81395
## 3201 1665.6977 1030.81395
## 3202 1665.6977 1030.81395
## 3203 1665.6977 1030.81395
## 3204 1665.6977 1030.81395
## 3205 1665.6977 1030.81395
## 3206 1665.6977 1030.81395
## 3207 1665.6977 1030.81395
## 3208 1665.6977 1030.81395
## 3209 1665.6977 1030.81395
## 3210 1665.6977 1030.81395
## 3211 1665.6977 1030.81395
## 3212 1665.6977 1030.81395
## 3213 1665.6977 1030.81395
## 3214 1665.6977 1030.81395
## 3215 1665.6977 1030.81395
## 3216 1665.6977 1030.81395
## 3217 1125.0000 1360.46512
## 3218 1125.0000 1360.46512
## 3219 1125.0000 1360.46512
## 3220 1125.0000 1360.46512
## 3221 1125.0000 1360.46512
## 3222 1125.0000 1360.46512
## 3223 1125.0000 1360.46512
## 3224 1125.0000 1360.46512
## 3225 1125.0000 1360.46512
## total_metaecosystem_Spi_indiv total_metaecosystem_Spi_te_indiv
## 1 635.75581 981.9767
## 2 635.75581 981.9767
## 3 635.75581 981.9767
## 4 635.75581 981.9767
## 5 635.75581 981.9767
## 6 635.75581 981.9767
## 7 635.75581 981.9767
## 8 635.75581 981.9767
## 9 635.75581 981.9767
## 10 635.75581 981.9767
## 11 635.75581 981.9767
## 12 635.75581 981.9767
## 13 635.75581 981.9767
## 14 635.75581 981.9767
## 15 635.75581 981.9767
## 16 635.75581 981.9767
## 17 635.75581 981.9767
## 18 635.75581 981.9767
## 19 635.75581 981.9767
## 20 635.75581 981.9767
## 21 635.75581 981.9767
## 22 635.75581 981.9767
## 23 635.75581 981.9767
## 24 635.75581 981.9767
## 25 1055.23256 1090.1163
## 26 1055.23256 1090.1163
## 27 1055.23256 1090.1163
## 28 1055.23256 1090.1163
## 29 1055.23256 1090.1163
## 30 1055.23256 1090.1163
## 31 1055.23256 1090.1163
## 32 1055.23256 1090.1163
## 33 1055.23256 1090.1163
## 34 1055.23256 1090.1163
## 35 1055.23256 1090.1163
## 36 1055.23256 1090.1163
## 37 1055.23256 1090.1163
## 38 1055.23256 1090.1163
## 39 1055.23256 1090.1163
## 40 1055.23256 1090.1163
## 41 1055.23256 1090.1163
## 42 1055.23256 1090.1163
## 43 1055.23256 1090.1163
## 44 1055.23256 1090.1163
## 45 1055.23256 1090.1163
## 46 1055.23256 1090.1163
## 47 1055.23256 1090.1163
## 48 1055.23256 1090.1163
## 49 1090.11628 2084.3023
## 50 1090.11628 2084.3023
## 51 1090.11628 2084.3023
## 52 1090.11628 2084.3023
## 53 1090.11628 2084.3023
## 54 1090.11628 2084.3023
## 55 1090.11628 2084.3023
## 56 1090.11628 2084.3023
## 57 1090.11628 2084.3023
## 58 1090.11628 2084.3023
## 59 1090.11628 2084.3023
## 60 1090.11628 2084.3023
## 61 1090.11628 2084.3023
## 62 1090.11628 2084.3023
## 63 1090.11628 2084.3023
## 64 1090.11628 2084.3023
## 65 1090.11628 2084.3023
## 66 1090.11628 2084.3023
## 67 1090.11628 2084.3023
## 68 1090.11628 2084.3023
## 69 1090.11628 2084.3023
## 70 1090.11628 2084.3023
## 71 1090.11628 2084.3023
## 72 1090.11628 2084.3023
## 73 2180.23256 2947.6744
## 74 2180.23256 2947.6744
## 75 2180.23256 2947.6744
## 76 2180.23256 2947.6744
## 77 2180.23256 2947.6744
## 78 2180.23256 2947.6744
## 79 2180.23256 2947.6744
## 80 2180.23256 2947.6744
## 81 2180.23256 2947.6744
## 82 2180.23256 2947.6744
## 83 2180.23256 2947.6744
## 84 2180.23256 2947.6744
## 85 2180.23256 2947.6744
## 86 2180.23256 2947.6744
## 87 2180.23256 2947.6744
## 88 2180.23256 2947.6744
## 89 2180.23256 2947.6744
## 90 2180.23256 2947.6744
## 91 2180.23256 2947.6744
## 92 2180.23256 2947.6744
## 93 2180.23256 2947.6744
## 94 2180.23256 2947.6744
## 95 2180.23256 2947.6744
## 96 2180.23256 2947.6744
## 97 549.41860 1308.1395
## 98 549.41860 1308.1395
## 99 549.41860 1308.1395
## 100 549.41860 1308.1395
## 101 549.41860 1308.1395
## 102 549.41860 1308.1395
## 103 549.41860 1308.1395
## 104 549.41860 1308.1395
## 105 549.41860 1308.1395
## 106 549.41860 1308.1395
## 107 549.41860 1308.1395
## 108 549.41860 1308.1395
## 109 549.41860 1308.1395
## 110 549.41860 1308.1395
## 111 549.41860 1308.1395
## 112 549.41860 1308.1395
## 113 549.41860 1308.1395
## 114 549.41860 1308.1395
## 115 549.41860 1308.1395
## 116 549.41860 1308.1395
## 117 549.41860 1308.1395
## 118 549.41860 1308.1395
## 119 549.41860 1308.1395
## 120 549.41860 1308.1395
## 121 0.00000 767.4419
## 122 0.00000 767.4419
## 123 0.00000 767.4419
## 124 0.00000 767.4419
## 125 0.00000 767.4419
## 126 0.00000 767.4419
## 127 0.00000 767.4419
## 128 0.00000 767.4419
## 129 0.00000 767.4419
## 130 0.00000 767.4419
## 131 0.00000 767.4419
## 132 0.00000 767.4419
## 133 0.00000 767.4419
## 134 0.00000 767.4419
## 135 0.00000 767.4419
## 136 0.00000 767.4419
## 137 0.00000 767.4419
## 138 0.00000 767.4419
## 139 0.00000 767.4419
## 140 0.00000 767.4419
## 141 0.00000 767.4419
## 142 0.00000 767.4419
## 143 0.00000 767.4419
## 144 0.00000 767.4419
## 145 31.39535 1460.7558
## 146 31.39535 1460.7558
## 147 31.39535 1460.7558
## 148 31.39535 1460.7558
## 149 31.39535 1460.7558
## 150 31.39535 1460.7558
## 151 31.39535 1460.7558
## 152 31.39535 1460.7558
## 153 31.39535 1460.7558
## 154 31.39535 1460.7558
## 155 31.39535 1460.7558
## 156 31.39535 1460.7558
## 157 31.39535 1460.7558
## 158 31.39535 1460.7558
## 159 31.39535 1460.7558
## 160 31.39535 1460.7558
## 161 31.39535 1460.7558
## 162 31.39535 1460.7558
## 163 31.39535 1460.7558
## 164 31.39535 1460.7558
## 165 31.39535 1460.7558
## 166 31.39535 1460.7558
## 167 31.39535 1460.7558
## 168 31.39535 1460.7558
## 169 126.45349 187.5000
## 170 126.45349 187.5000
## 171 126.45349 187.5000
## 172 126.45349 187.5000
## 173 126.45349 187.5000
## 174 126.45349 187.5000
## 175 126.45349 187.5000
## 176 126.45349 187.5000
## 177 126.45349 187.5000
## 178 126.45349 187.5000
## 179 126.45349 187.5000
## 180 126.45349 187.5000
## 181 126.45349 187.5000
## 182 126.45349 187.5000
## 183 126.45349 187.5000
## 184 126.45349 187.5000
## 185 126.45349 187.5000
## 186 126.45349 187.5000
## 187 126.45349 187.5000
## 188 126.45349 187.5000
## 189 126.45349 187.5000
## 190 126.45349 187.5000
## 191 126.45349 187.5000
## 192 126.45349 187.5000
## 193 635.75581 981.9767
## 194 635.75581 981.9767
## 195 635.75581 981.9767
## 196 635.75581 981.9767
## 197 635.75581 981.9767
## 198 635.75581 981.9767
## 199 635.75581 981.9767
## 200 635.75581 981.9767
## 201 635.75581 981.9767
## 202 635.75581 981.9767
## 203 635.75581 981.9767
## 204 635.75581 981.9767
## 205 635.75581 981.9767
## 206 635.75581 981.9767
## 207 635.75581 981.9767
## 208 635.75581 981.9767
## 209 635.75581 981.9767
## 210 635.75581 981.9767
## 211 635.75581 981.9767
## 212 635.75581 981.9767
## 213 635.75581 981.9767
## 214 635.75581 981.9767
## 215 635.75581 981.9767
## 216 635.75581 981.9767
## 217 1029.06977 0.0000
## 218 1029.06977 0.0000
## 219 1029.06977 0.0000
## 220 1029.06977 0.0000
## 221 1029.06977 0.0000
## 222 1029.06977 0.0000
## 223 1029.06977 0.0000
## 224 1029.06977 0.0000
## 225 1029.06977 0.0000
## 226 1029.06977 0.0000
## 227 1029.06977 0.0000
## 228 1029.06977 0.0000
## 229 1029.06977 0.0000
## 230 1029.06977 0.0000
## 231 1029.06977 0.0000
## 232 1029.06977 0.0000
## 233 1029.06977 0.0000
## 234 1029.06977 0.0000
## 235 1029.06977 0.0000
## 236 1029.06977 0.0000
## 237 1029.06977 0.0000
## 238 1029.06977 0.0000
## 239 1029.06977 0.0000
## 240 1029.06977 0.0000
## 241 0.00000 1997.0930
## 242 0.00000 1997.0930
## 243 0.00000 1997.0930
## 244 0.00000 1997.0930
## 245 0.00000 1997.0930
## 246 0.00000 1997.0930
## 247 0.00000 1997.0930
## 248 0.00000 1997.0930
## 249 0.00000 1997.0930
## 250 0.00000 1997.0930
## 251 0.00000 1997.0930
## 252 0.00000 1997.0930
## 253 0.00000 1997.0930
## 254 0.00000 1997.0930
## 255 0.00000 1997.0930
## 256 0.00000 1997.0930
## 257 0.00000 1997.0930
## 258 0.00000 1997.0930
## 259 0.00000 1997.0930
## 260 0.00000 1997.0930
## 261 0.00000 1997.0930
## 262 0.00000 1997.0930
## 263 0.00000 1997.0930
## 264 0.00000 1997.0930
## 265 2188.95349 3122.0930
## 266 2188.95349 3122.0930
## 267 2188.95349 3122.0930
## 268 2188.95349 3122.0930
## 269 2188.95349 3122.0930
## 270 2188.95349 3122.0930
## 271 2188.95349 3122.0930
## 272 2188.95349 3122.0930
## 273 2188.95349 3122.0930
## 274 2188.95349 3122.0930
## 275 2188.95349 3122.0930
## 276 2188.95349 3122.0930
## 277 2188.95349 3122.0930
## 278 2188.95349 3122.0930
## 279 2188.95349 3122.0930
## 280 2188.95349 3122.0930
## 281 2188.95349 3122.0930
## 282 2188.95349 3122.0930
## 283 2188.95349 3122.0930
## 284 2188.95349 3122.0930
## 285 2188.95349 3122.0930
## 286 2188.95349 3122.0930
## 287 2188.95349 3122.0930
## 288 2188.95349 3122.0930
## 289 3654.06977 218.0233
## 290 3654.06977 218.0233
## 291 3654.06977 218.0233
## 292 3654.06977 218.0233
## 293 3654.06977 218.0233
## 294 3654.06977 218.0233
## 295 3654.06977 218.0233
## 296 3654.06977 218.0233
## 297 3654.06977 218.0233
## 298 3654.06977 218.0233
## 299 3654.06977 218.0233
## 300 3654.06977 218.0233
## 301 3654.06977 218.0233
## 302 3654.06977 218.0233
## 303 3654.06977 218.0233
## 304 3654.06977 218.0233
## 305 3654.06977 218.0233
## 306 3654.06977 218.0233
## 307 3654.06977 218.0233
## 308 3654.06977 218.0233
## 309 3654.06977 218.0233
## 310 3654.06977 218.0233
## 311 3654.06977 218.0233
## 312 3654.06977 218.0233
## 313 287.79070 3270.3488
## 314 287.79070 3270.3488
## 315 287.79070 3270.3488
## 316 287.79070 3270.3488
## 317 287.79070 3270.3488
## 318 287.79070 3270.3488
## 319 287.79070 3270.3488
## 320 287.79070 3270.3488
## 321 287.79070 3270.3488
## 322 287.79070 3270.3488
## 323 287.79070 3270.3488
## 324 287.79070 3270.3488
## 325 287.79070 3270.3488
## 326 287.79070 3270.3488
## 327 287.79070 3270.3488
## 328 287.79070 3270.3488
## 329 287.79070 3270.3488
## 330 287.79070 3270.3488
## 331 287.79070 3270.3488
## 332 287.79070 3270.3488
## 333 287.79070 3270.3488
## 334 287.79070 3270.3488
## 335 287.79070 3270.3488
## 336 287.79070 3270.3488
## 337 31.39535 218.0233
## 338 31.39535 218.0233
## 339 31.39535 218.0233
## 340 31.39535 218.0233
## 341 31.39535 218.0233
## 342 31.39535 218.0233
## 343 31.39535 218.0233
## 344 31.39535 218.0233
## 345 31.39535 218.0233
## 346 31.39535 218.0233
## 347 31.39535 218.0233
## 348 31.39535 218.0233
## 349 31.39535 218.0233
## 350 31.39535 218.0233
## 351 31.39535 218.0233
## 352 31.39535 218.0233
## 353 31.39535 218.0233
## 354 31.39535 218.0233
## 355 31.39535 218.0233
## 356 31.39535 218.0233
## 357 31.39535 218.0233
## 358 31.39535 218.0233
## 359 31.39535 218.0233
## 360 31.39535 218.0233
## 361 0.00000 928.7791
## 362 0.00000 928.7791
## 363 0.00000 928.7791
## 364 0.00000 928.7791
## 365 0.00000 928.7791
## 366 0.00000 928.7791
## 367 0.00000 928.7791
## 368 0.00000 928.7791
## 369 0.00000 928.7791
## 370 0.00000 928.7791
## 371 0.00000 928.7791
## 372 0.00000 928.7791
## 373 0.00000 928.7791
## 374 0.00000 928.7791
## 375 0.00000 928.7791
## 376 0.00000 928.7791
## 377 0.00000 928.7791
## 378 0.00000 928.7791
## 379 0.00000 928.7791
## 380 0.00000 928.7791
## 381 0.00000 928.7791
## 382 0.00000 928.7791
## 383 0.00000 928.7791
## 384 0.00000 928.7791
## 385 635.75581 981.9767
## 386 635.75581 981.9767
## 387 635.75581 981.9767
## 388 635.75581 981.9767
## 389 635.75581 981.9767
## 390 635.75581 981.9767
## 391 635.75581 981.9767
## 392 635.75581 981.9767
## 393 635.75581 981.9767
## 394 635.75581 981.9767
## 395 635.75581 981.9767
## 396 635.75581 981.9767
## 397 635.75581 981.9767
## 398 635.75581 981.9767
## 399 635.75581 981.9767
## 400 635.75581 981.9767
## 401 635.75581 981.9767
## 402 635.75581 981.9767
## 403 635.75581 981.9767
## 404 635.75581 981.9767
## 405 635.75581 981.9767
## 406 635.75581 981.9767
## 407 635.75581 981.9767
## 408 635.75581 981.9767
## 409 2162.79070 2825.5814
## 410 2162.79070 2825.5814
## 411 2162.79070 2825.5814
## 412 2162.79070 2825.5814
## 413 2162.79070 2825.5814
## 414 2162.79070 2825.5814
## 415 2162.79070 2825.5814
## 416 2162.79070 2825.5814
## 417 2162.79070 2825.5814
## 418 2162.79070 2825.5814
## 419 2162.79070 2825.5814
## 420 2162.79070 2825.5814
## 421 2162.79070 2825.5814
## 422 2162.79070 2825.5814
## 423 2162.79070 2825.5814
## 424 2162.79070 2825.5814
## 425 2162.79070 2825.5814
## 426 2162.79070 2825.5814
## 427 2162.79070 2825.5814
## 428 2162.79070 2825.5814
## 429 2162.79070 2825.5814
## 430 2162.79070 2825.5814
## 431 2162.79070 2825.5814
## 432 2162.79070 2825.5814
## 433 1090.11628 3174.4186
## 434 1090.11628 3174.4186
## 435 1090.11628 3174.4186
## 436 1090.11628 3174.4186
## 437 1090.11628 3174.4186
## 438 1090.11628 3174.4186
## 439 1090.11628 3174.4186
## 440 1090.11628 3174.4186
## 441 1090.11628 3174.4186
## 442 1090.11628 3174.4186
## 443 1090.11628 3174.4186
## 444 1090.11628 3174.4186
## 445 1090.11628 3174.4186
## 446 1090.11628 3174.4186
## 447 1090.11628 3174.4186
## 448 1090.11628 3174.4186
## 449 1090.11628 3174.4186
## 450 1090.11628 3174.4186
## 451 1090.11628 3174.4186
## 452 1090.11628 3174.4186
## 453 1090.11628 3174.4186
## 454 1090.11628 3174.4186
## 455 1090.11628 3174.4186
## 456 1090.11628 3174.4186
## 457 0.00000 6793.6047
## 458 0.00000 6793.6047
## 459 0.00000 6793.6047
## 460 0.00000 6793.6047
## 461 0.00000 6793.6047
## 462 0.00000 6793.6047
## 463 0.00000 6793.6047
## 464 0.00000 6793.6047
## 465 0.00000 6793.6047
## 466 0.00000 6793.6047
## 467 0.00000 6793.6047
## 468 0.00000 6793.6047
## 469 0.00000 6793.6047
## 470 0.00000 6793.6047
## 471 0.00000 6793.6047
## 472 0.00000 6793.6047
## 473 0.00000 6793.6047
## 474 0.00000 6793.6047
## 475 0.00000 6793.6047
## 476 0.00000 6793.6047
## 477 0.00000 6793.6047
## 478 0.00000 6793.6047
## 479 0.00000 6793.6047
## 480 0.00000 6793.6047
## 481 2215.11628 2433.1395
## 482 2215.11628 2433.1395
## 483 2215.11628 2433.1395
## 484 2215.11628 2433.1395
## 485 2215.11628 2433.1395
## 486 2215.11628 2433.1395
## 487 2215.11628 2433.1395
## 488 2215.11628 2433.1395
## 489 2215.11628 2433.1395
## 490 2215.11628 2433.1395
## 491 2215.11628 2433.1395
## 492 2215.11628 2433.1395
## 493 2215.11628 2433.1395
## 494 2215.11628 2433.1395
## 495 2215.11628 2433.1395
## 496 2215.11628 2433.1395
## 497 2215.11628 2433.1395
## 498 2215.11628 2433.1395
## 499 2215.11628 2433.1395
## 500 2215.11628 2433.1395
## 501 2215.11628 2433.1395
## 502 2215.11628 2433.1395
## 503 2215.11628 2433.1395
## 504 2215.11628 2433.1395
## 505 0.00000 5450.5814
## 506 0.00000 5450.5814
## 507 0.00000 5450.5814
## 508 0.00000 5450.5814
## 509 0.00000 5450.5814
## 510 0.00000 5450.5814
## 511 0.00000 5450.5814
## 512 0.00000 5450.5814
## 513 0.00000 5450.5814
## 514 0.00000 5450.5814
## 515 0.00000 5450.5814
## 516 0.00000 5450.5814
## 517 0.00000 5450.5814
## 518 0.00000 5450.5814
## 519 0.00000 5450.5814
## 520 0.00000 5450.5814
## 521 0.00000 5450.5814
## 522 0.00000 5450.5814
## 523 0.00000 5450.5814
## 524 0.00000 5450.5814
## 525 0.00000 5450.5814
## 526 0.00000 5450.5814
## 527 0.00000 5450.5814
## 528 0.00000 5450.5814
## 529 31.39535 806.6860
## 530 31.39535 806.6860
## 531 31.39535 806.6860
## 532 31.39535 806.6860
## 533 31.39535 806.6860
## 534 31.39535 806.6860
## 535 31.39535 806.6860
## 536 31.39535 806.6860
## 537 31.39535 806.6860
## 538 31.39535 806.6860
## 539 31.39535 806.6860
## 540 31.39535 806.6860
## 541 31.39535 806.6860
## 542 31.39535 806.6860
## 543 31.39535 806.6860
## 544 31.39535 806.6860
## 545 31.39535 806.6860
## 546 31.39535 806.6860
## 547 31.39535 806.6860
## 548 31.39535 806.6860
## 549 31.39535 806.6860
## 550 31.39535 806.6860
## 551 31.39535 806.6860
## 552 31.39535 806.6860
## 553 0.00000 1229.6512
## 554 0.00000 1229.6512
## 555 0.00000 1229.6512
## 556 0.00000 1229.6512
## 557 0.00000 1229.6512
## 558 0.00000 1229.6512
## 559 0.00000 1229.6512
## 560 0.00000 1229.6512
## 561 0.00000 1229.6512
## 562 0.00000 1229.6512
## 563 0.00000 1229.6512
## 564 0.00000 1229.6512
## 565 0.00000 1229.6512
## 566 0.00000 1229.6512
## 567 0.00000 1229.6512
## 568 0.00000 1229.6512
## 569 0.00000 1229.6512
## 570 0.00000 1229.6512
## 571 0.00000 1229.6512
## 572 0.00000 1229.6512
## 573 0.00000 1229.6512
## 574 0.00000 1229.6512
## 575 0.00000 1229.6512
## 576 0.00000 1229.6512
## 577 635.75581 981.9767
## 578 635.75581 981.9767
## 579 635.75581 981.9767
## 580 635.75581 981.9767
## 581 635.75581 981.9767
## 582 635.75581 981.9767
## 583 635.75581 981.9767
## 584 635.75581 981.9767
## 585 635.75581 981.9767
## 586 635.75581 981.9767
## 587 635.75581 981.9767
## 588 635.75581 981.9767
## 589 635.75581 981.9767
## 590 635.75581 981.9767
## 591 635.75581 981.9767
## 592 635.75581 981.9767
## 593 635.75581 981.9767
## 594 635.75581 981.9767
## 595 635.75581 981.9767
## 596 635.75581 981.9767
## 597 635.75581 981.9767
## 598 635.75581 981.9767
## 599 635.75581 981.9767
## 600 635.75581 981.9767
## 601 0.00000 2180.2326
## 602 0.00000 2180.2326
## 603 0.00000 2180.2326
## 604 0.00000 2180.2326
## 605 0.00000 2180.2326
## 606 0.00000 2180.2326
## 607 0.00000 2180.2326
## 608 0.00000 2180.2326
## 609 0.00000 2180.2326
## 610 0.00000 2180.2326
## 611 0.00000 2180.2326
## 612 0.00000 2180.2326
## 613 0.00000 2180.2326
## 614 0.00000 2180.2326
## 615 0.00000 2180.2326
## 616 0.00000 2180.2326
## 617 0.00000 2180.2326
## 618 0.00000 2180.2326
## 619 0.00000 2180.2326
## 620 0.00000 2180.2326
## 621 0.00000 2180.2326
## 622 0.00000 2180.2326
## 623 0.00000 2180.2326
## 624 0.00000 2180.2326
## 625 235.46512 2084.3023
## 626 235.46512 2084.3023
## 627 235.46512 2084.3023
## 628 235.46512 2084.3023
## 629 235.46512 2084.3023
## 630 235.46512 2084.3023
## 631 235.46512 2084.3023
## 632 235.46512 2084.3023
## 633 235.46512 2084.3023
## 634 235.46512 2084.3023
## 635 235.46512 2084.3023
## 636 235.46512 2084.3023
## 637 235.46512 2084.3023
## 638 235.46512 2084.3023
## 639 235.46512 2084.3023
## 640 235.46512 2084.3023
## 641 235.46512 2084.3023
## 642 235.46512 2084.3023
## 643 235.46512 2084.3023
## 644 235.46512 2084.3023
## 645 235.46512 2084.3023
## 646 235.46512 2084.3023
## 647 235.46512 2084.3023
## 648 235.46512 2084.3023
## 649 0.00000 1090.1163
## 650 0.00000 1090.1163
## 651 0.00000 1090.1163
## 652 0.00000 1090.1163
## 653 0.00000 1090.1163
## 654 0.00000 1090.1163
## 655 0.00000 1090.1163
## 656 0.00000 1090.1163
## 657 0.00000 1090.1163
## 658 0.00000 1090.1163
## 659 0.00000 1090.1163
## 660 0.00000 1090.1163
## 661 0.00000 1090.1163
## 662 0.00000 1090.1163
## 663 0.00000 1090.1163
## 664 0.00000 1090.1163
## 665 0.00000 1090.1163
## 666 0.00000 1090.1163
## 667 0.00000 1090.1163
## 668 0.00000 1090.1163
## 669 0.00000 1090.1163
## 670 0.00000 1090.1163
## 671 0.00000 1090.1163
## 672 0.00000 1090.1163
## 673 1081.39535 218.0233
## 674 1081.39535 218.0233
## 675 1081.39535 218.0233
## 676 1081.39535 218.0233
## 677 1081.39535 218.0233
## 678 1081.39535 218.0233
## 679 1081.39535 218.0233
## 680 1081.39535 218.0233
## 681 1081.39535 218.0233
## 682 1081.39535 218.0233
## 683 1081.39535 218.0233
## 684 1081.39535 218.0233
## 685 1081.39535 218.0233
## 686 1081.39535 218.0233
## 687 1081.39535 218.0233
## 688 1081.39535 218.0233
## 689 1081.39535 218.0233
## 690 1081.39535 218.0233
## 691 1081.39535 218.0233
## 692 1081.39535 218.0233
## 693 1081.39535 218.0233
## 694 1081.39535 218.0233
## 695 1081.39535 218.0233
## 696 1081.39535 218.0233
## 697 0.00000 0.0000
## 698 0.00000 0.0000
## 699 0.00000 0.0000
## 700 0.00000 0.0000
## 701 0.00000 0.0000
## 702 0.00000 0.0000
## 703 0.00000 0.0000
## 704 0.00000 0.0000
## 705 0.00000 0.0000
## 706 0.00000 0.0000
## 707 0.00000 0.0000
## 708 0.00000 0.0000
## 709 0.00000 0.0000
## 710 0.00000 0.0000
## 711 0.00000 0.0000
## 712 0.00000 0.0000
## 713 0.00000 0.0000
## 714 0.00000 0.0000
## 715 0.00000 0.0000
## 716 0.00000 0.0000
## 717 0.00000 0.0000
## 718 0.00000 0.0000
## 719 0.00000 0.0000
## 720 0.00000 0.0000
## 721 31.39535 109.0116
## 722 31.39535 109.0116
## 723 31.39535 109.0116
## 724 31.39535 109.0116
## 725 31.39535 109.0116
## 726 31.39535 109.0116
## 727 31.39535 109.0116
## 728 31.39535 109.0116
## 729 31.39535 109.0116
## 730 31.39535 109.0116
## 731 31.39535 109.0116
## 732 31.39535 109.0116
## 733 31.39535 109.0116
## 734 31.39535 109.0116
## 735 31.39535 109.0116
## 736 31.39535 109.0116
## 737 31.39535 109.0116
## 738 31.39535 109.0116
## 739 31.39535 109.0116
## 740 31.39535 109.0116
## 741 31.39535 109.0116
## 742 31.39535 109.0116
## 743 31.39535 109.0116
## 744 31.39535 109.0116
## 745 0.00000 0.0000
## 746 0.00000 0.0000
## 747 0.00000 0.0000
## 748 0.00000 0.0000
## 749 0.00000 0.0000
## 750 0.00000 0.0000
## 751 0.00000 0.0000
## 752 0.00000 0.0000
## 753 0.00000 0.0000
## 754 0.00000 0.0000
## 755 0.00000 0.0000
## 756 0.00000 0.0000
## 757 0.00000 0.0000
## 758 0.00000 0.0000
## 759 0.00000 0.0000
## 760 0.00000 0.0000
## 761 0.00000 0.0000
## 762 0.00000 0.0000
## 763 0.00000 0.0000
## 764 0.00000 0.0000
## 765 0.00000 0.0000
## 766 0.00000 0.0000
## 767 0.00000 0.0000
## 768 0.00000 0.0000
## 769 635.75581 981.9767
## 770 635.75581 981.9767
## 771 635.75581 981.9767
## 772 635.75581 981.9767
## 773 635.75581 981.9767
## 774 635.75581 981.9767
## 775 635.75581 981.9767
## 776 635.75581 981.9767
## 777 635.75581 981.9767
## 778 635.75581 981.9767
## 779 635.75581 981.9767
## 780 635.75581 981.9767
## 781 635.75581 981.9767
## 782 635.75581 981.9767
## 783 635.75581 981.9767
## 784 635.75581 981.9767
## 785 635.75581 981.9767
## 786 635.75581 981.9767
## 787 635.75581 981.9767
## 788 635.75581 981.9767
## 789 635.75581 981.9767
## 790 635.75581 981.9767
## 791 635.75581 981.9767
## 792 635.75581 981.9767
## 793 0.00000 1465.1163
## 794 0.00000 1465.1163
## 795 0.00000 1465.1163
## 796 0.00000 1465.1163
## 797 0.00000 1465.1163
## 798 0.00000 1465.1163
## 799 0.00000 1465.1163
## 800 0.00000 1465.1163
## 801 0.00000 1465.1163
## 802 0.00000 1465.1163
## 803 0.00000 1465.1163
## 804 0.00000 1465.1163
## 805 0.00000 1465.1163
## 806 0.00000 1465.1163
## 807 0.00000 1465.1163
## 808 0.00000 1465.1163
## 809 0.00000 1465.1163
## 810 0.00000 1465.1163
## 811 0.00000 1465.1163
## 812 0.00000 1465.1163
## 813 0.00000 1465.1163
## 814 0.00000 1465.1163
## 815 0.00000 1465.1163
## 816 0.00000 1465.1163
## 817 1055.23256 2389.5349
## 818 1055.23256 2389.5349
## 819 1055.23256 2389.5349
## 820 1055.23256 2389.5349
## 821 1055.23256 2389.5349
## 822 1055.23256 2389.5349
## 823 1055.23256 2389.5349
## 824 1055.23256 2389.5349
## 825 1055.23256 2389.5349
## 826 1055.23256 2389.5349
## 827 1055.23256 2389.5349
## 828 1055.23256 2389.5349
## 829 1055.23256 2389.5349
## 830 1055.23256 2389.5349
## 831 1055.23256 2389.5349
## 832 1055.23256 2389.5349
## 833 1055.23256 2389.5349
## 834 1055.23256 2389.5349
## 835 1055.23256 2389.5349
## 836 1055.23256 2389.5349
## 837 1055.23256 2389.5349
## 838 1055.23256 2389.5349
## 839 1055.23256 2389.5349
## 840 1055.23256 2389.5349
## 841 3427.32558 2136.6279
## 842 3427.32558 2136.6279
## 843 3427.32558 2136.6279
## 844 3427.32558 2136.6279
## 845 3427.32558 2136.6279
## 846 3427.32558 2136.6279
## 847 3427.32558 2136.6279
## 848 3427.32558 2136.6279
## 849 3427.32558 2136.6279
## 850 3427.32558 2136.6279
## 851 3427.32558 2136.6279
## 852 3427.32558 2136.6279
## 853 3427.32558 2136.6279
## 854 3427.32558 2136.6279
## 855 3427.32558 2136.6279
## 856 3427.32558 2136.6279
## 857 3427.32558 2136.6279
## 858 3427.32558 2136.6279
## 859 3427.32558 2136.6279
## 860 3427.32558 2136.6279
## 861 3427.32558 2136.6279
## 862 3427.32558 2136.6279
## 863 3427.32558 2136.6279
## 864 3427.32558 2136.6279
## 865 3706.39535 1308.1395
## 866 3706.39535 1308.1395
## 867 3706.39535 1308.1395
## 868 3706.39535 1308.1395
## 869 3706.39535 1308.1395
## 870 3706.39535 1308.1395
## 871 3706.39535 1308.1395
## 872 3706.39535 1308.1395
## 873 3706.39535 1308.1395
## 874 3706.39535 1308.1395
## 875 3706.39535 1308.1395
## 876 3706.39535 1308.1395
## 877 3706.39535 1308.1395
## 878 3706.39535 1308.1395
## 879 3706.39535 1308.1395
## 880 3706.39535 1308.1395
## 881 3706.39535 1308.1395
## 882 3706.39535 1308.1395
## 883 3706.39535 1308.1395
## 884 3706.39535 1308.1395
## 885 3706.39535 1308.1395
## 886 3706.39535 1308.1395
## 887 3706.39535 1308.1395
## 888 3706.39535 1308.1395
## 889 1090.11628 1090.1163
## 890 1090.11628 1090.1163
## 891 1090.11628 1090.1163
## 892 1090.11628 1090.1163
## 893 1090.11628 1090.1163
## 894 1090.11628 1090.1163
## 895 1090.11628 1090.1163
## 896 1090.11628 1090.1163
## 897 1090.11628 1090.1163
## 898 1090.11628 1090.1163
## 899 1090.11628 1090.1163
## 900 1090.11628 1090.1163
## 901 1090.11628 1090.1163
## 902 1090.11628 1090.1163
## 903 1090.11628 1090.1163
## 904 1090.11628 1090.1163
## 905 1090.11628 1090.1163
## 906 1090.11628 1090.1163
## 907 1090.11628 1090.1163
## 908 1090.11628 1090.1163
## 909 1090.11628 1090.1163
## 910 1090.11628 1090.1163
## 911 1090.11628 1090.1163
## 912 1090.11628 1090.1163
## 913 1121.51163 3235.4651
## 914 1121.51163 3235.4651
## 915 1121.51163 3235.4651
## 916 1121.51163 3235.4651
## 917 1121.51163 3235.4651
## 918 1121.51163 3235.4651
## 919 1121.51163 3235.4651
## 920 1121.51163 3235.4651
## 921 1121.51163 3235.4651
## 922 1121.51163 3235.4651
## 923 1121.51163 3235.4651
## 924 1121.51163 3235.4651
## 925 1121.51163 3235.4651
## 926 1121.51163 3235.4651
## 927 1121.51163 3235.4651
## 928 1121.51163 3235.4651
## 929 1121.51163 3235.4651
## 930 1121.51163 3235.4651
## 931 1121.51163 3235.4651
## 932 1121.51163 3235.4651
## 933 1121.51163 3235.4651
## 934 1121.51163 3235.4651
## 935 1121.51163 3235.4651
## 936 1121.51163 3235.4651
## 937 0.00000 1077.0349
## 938 0.00000 1077.0349
## 939 0.00000 1077.0349
## 940 0.00000 1077.0349
## 941 0.00000 1077.0349
## 942 0.00000 1077.0349
## 943 0.00000 1077.0349
## 944 0.00000 1077.0349
## 945 0.00000 1077.0349
## 946 0.00000 1077.0349
## 947 0.00000 1077.0349
## 948 0.00000 1077.0349
## 949 0.00000 1077.0349
## 950 0.00000 1077.0349
## 951 0.00000 1077.0349
## 952 0.00000 1077.0349
## 953 0.00000 1077.0349
## 954 0.00000 1077.0349
## 955 0.00000 1077.0349
## 956 0.00000 1077.0349
## 957 0.00000 1077.0349
## 958 0.00000 1077.0349
## 959 0.00000 1077.0349
## 960 0.00000 1077.0349
## 961 635.75581 981.9767
## 962 635.75581 981.9767
## 963 635.75581 981.9767
## 964 635.75581 981.9767
## 965 635.75581 981.9767
## 966 635.75581 981.9767
## 967 635.75581 981.9767
## 968 635.75581 981.9767
## 969 635.75581 981.9767
## 970 635.75581 981.9767
## 971 635.75581 981.9767
## 972 635.75581 981.9767
## 973 635.75581 981.9767
## 974 635.75581 981.9767
## 975 635.75581 981.9767
## 976 635.75581 981.9767
## 977 635.75581 981.9767
## 978 635.75581 981.9767
## 979 635.75581 981.9767
## 980 635.75581 981.9767
## 981 635.75581 981.9767
## 982 635.75581 981.9767
## 983 635.75581 981.9767
## 984 635.75581 981.9767
## 985 1055.23256 1247.0930
## 986 1055.23256 1247.0930
## 987 1055.23256 1247.0930
## 988 1055.23256 1247.0930
## 989 1055.23256 1247.0930
## 990 1055.23256 1247.0930
## 991 1055.23256 1247.0930
## 992 1055.23256 1247.0930
## 993 1055.23256 1247.0930
## 994 1055.23256 1247.0930
## 995 1055.23256 1247.0930
## 996 1055.23256 1247.0930
## 997 1055.23256 1247.0930
## 998 1055.23256 1247.0930
## 999 1055.23256 1247.0930
## 1000 1055.23256 1247.0930
## 1001 1055.23256 1247.0930
## 1002 1055.23256 1247.0930
## 1003 1055.23256 1247.0930
## 1004 1055.23256 1247.0930
## 1005 1055.23256 1247.0930
## 1006 1055.23256 1247.0930
## 1007 1055.23256 1247.0930
## 1008 1055.23256 1247.0930
## 1009 1090.11628 1308.1395
## 1010 1090.11628 1308.1395
## 1011 1090.11628 1308.1395
## 1012 1090.11628 1308.1395
## 1013 1090.11628 1308.1395
## 1014 1090.11628 1308.1395
## 1015 1090.11628 1308.1395
## 1016 1090.11628 1308.1395
## 1017 1090.11628 1308.1395
## 1018 1090.11628 1308.1395
## 1019 1090.11628 1308.1395
## 1020 1090.11628 1308.1395
## 1021 1090.11628 1308.1395
## 1022 1090.11628 1308.1395
## 1023 1090.11628 1308.1395
## 1024 1090.11628 1308.1395
## 1025 1090.11628 1308.1395
## 1026 1090.11628 1308.1395
## 1027 1090.11628 1308.1395
## 1028 1090.11628 1308.1395
## 1029 1090.11628 1308.1395
## 1030 1090.11628 1308.1395
## 1031 1090.11628 1308.1395
## 1032 1090.11628 1308.1395
## 1033 2180.23256 2947.6744
## 1034 2180.23256 2947.6744
## 1035 2180.23256 2947.6744
## 1036 2180.23256 2947.6744
## 1037 2180.23256 2947.6744
## 1038 2180.23256 2947.6744
## 1039 2180.23256 2947.6744
## 1040 2180.23256 2947.6744
## 1041 2180.23256 2947.6744
## 1042 2180.23256 2947.6744
## 1043 2180.23256 2947.6744
## 1044 2180.23256 2947.6744
## 1045 2180.23256 2947.6744
## 1046 2180.23256 2947.6744
## 1047 2180.23256 2947.6744
## 1048 2180.23256 2947.6744
## 1049 2180.23256 2947.6744
## 1050 2180.23256 2947.6744
## 1051 2180.23256 2947.6744
## 1052 2180.23256 2947.6744
## 1053 2180.23256 2947.6744
## 1054 2180.23256 2947.6744
## 1055 2180.23256 2947.6744
## 1056 2180.23256 2947.6744
## 1057 549.41860 1090.1163
## 1058 549.41860 1090.1163
## 1059 549.41860 1090.1163
## 1060 549.41860 1090.1163
## 1061 549.41860 1090.1163
## 1062 549.41860 1090.1163
## 1063 549.41860 1090.1163
## 1064 549.41860 1090.1163
## 1065 549.41860 1090.1163
## 1066 549.41860 1090.1163
## 1067 549.41860 1090.1163
## 1068 549.41860 1090.1163
## 1069 549.41860 1090.1163
## 1070 549.41860 1090.1163
## 1071 549.41860 1090.1163
## 1072 549.41860 1090.1163
## 1073 549.41860 1090.1163
## 1074 549.41860 1090.1163
## 1075 549.41860 1090.1163
## 1076 549.41860 1090.1163
## 1077 549.41860 1090.1163
## 1078 549.41860 1090.1163
## 1079 549.41860 1090.1163
## 1080 549.41860 1090.1163
## 1081 0.00000 767.4419
## 1082 0.00000 767.4419
## 1083 0.00000 767.4419
## 1084 0.00000 767.4419
## 1085 0.00000 767.4419
## 1086 0.00000 767.4419
## 1087 0.00000 767.4419
## 1088 0.00000 767.4419
## 1089 0.00000 767.4419
## 1090 0.00000 767.4419
## 1091 0.00000 767.4419
## 1092 0.00000 767.4419
## 1093 0.00000 767.4419
## 1094 0.00000 767.4419
## 1095 0.00000 767.4419
## 1096 0.00000 767.4419
## 1097 0.00000 767.4419
## 1098 0.00000 767.4419
## 1099 0.00000 767.4419
## 1100 0.00000 767.4419
## 1101 0.00000 767.4419
## 1102 0.00000 767.4419
## 1103 0.00000 767.4419
## 1104 0.00000 767.4419
## 1105 0.00000 1351.7442
## 1106 0.00000 1351.7442
## 1107 0.00000 1351.7442
## 1108 0.00000 1351.7442
## 1109 0.00000 1351.7442
## 1110 0.00000 1351.7442
## 1111 0.00000 1351.7442
## 1112 0.00000 1351.7442
## 1113 0.00000 1351.7442
## 1114 0.00000 1351.7442
## 1115 0.00000 1351.7442
## 1116 0.00000 1351.7442
## 1117 0.00000 1351.7442
## 1118 0.00000 1351.7442
## 1119 0.00000 1351.7442
## 1120 0.00000 1351.7442
## 1121 0.00000 1351.7442
## 1122 0.00000 1351.7442
## 1123 0.00000 1351.7442
## 1124 0.00000 1351.7442
## 1125 0.00000 1351.7442
## 1126 0.00000 1351.7442
## 1127 0.00000 1351.7442
## 1128 0.00000 1351.7442
## 1129 126.45349 187.5000
## 1130 126.45349 187.5000
## 1131 126.45349 187.5000
## 1132 126.45349 187.5000
## 1133 126.45349 187.5000
## 1134 126.45349 187.5000
## 1135 126.45349 187.5000
## 1136 126.45349 187.5000
## 1137 126.45349 187.5000
## 1138 126.45349 187.5000
## 1139 126.45349 187.5000
## 1140 126.45349 187.5000
## 1141 126.45349 187.5000
## 1142 126.45349 187.5000
## 1143 126.45349 187.5000
## 1144 126.45349 187.5000
## 1145 126.45349 187.5000
## 1146 126.45349 187.5000
## 1147 126.45349 187.5000
## 1148 126.45349 187.5000
## 1149 126.45349 187.5000
## 1150 126.45349 187.5000
## 1151 126.45349 187.5000
## 1152 126.45349 187.5000
## 1153 635.75581 981.9767
## 1154 635.75581 981.9767
## 1155 635.75581 981.9767
## 1156 635.75581 981.9767
## 1157 635.75581 981.9767
## 1158 635.75581 981.9767
## 1159 635.75581 981.9767
## 1160 635.75581 981.9767
## 1161 635.75581 981.9767
## 1162 635.75581 981.9767
## 1163 635.75581 981.9767
## 1164 635.75581 981.9767
## 1165 635.75581 981.9767
## 1166 635.75581 981.9767
## 1167 635.75581 981.9767
## 1168 635.75581 981.9767
## 1169 635.75581 981.9767
## 1170 635.75581 981.9767
## 1171 635.75581 981.9767
## 1172 635.75581 981.9767
## 1173 635.75581 981.9767
## 1174 635.75581 981.9767
## 1175 635.75581 981.9767
## 1176 635.75581 981.9767
## 1177 1029.06977 156.9767
## 1178 1029.06977 156.9767
## 1179 1029.06977 156.9767
## 1180 1029.06977 156.9767
## 1181 1029.06977 156.9767
## 1182 1029.06977 156.9767
## 1183 1029.06977 156.9767
## 1184 1029.06977 156.9767
## 1185 1029.06977 156.9767
## 1186 1029.06977 156.9767
## 1187 1029.06977 156.9767
## 1188 1029.06977 156.9767
## 1189 1029.06977 156.9767
## 1190 1029.06977 156.9767
## 1191 1029.06977 156.9767
## 1192 1029.06977 156.9767
## 1193 1029.06977 156.9767
## 1194 1029.06977 156.9767
## 1195 1029.06977 156.9767
## 1196 1029.06977 156.9767
## 1197 1029.06977 156.9767
## 1198 1029.06977 156.9767
## 1199 1029.06977 156.9767
## 1200 1029.06977 156.9767
## 1201 0.00000 1220.9302
## 1202 0.00000 1220.9302
## 1203 0.00000 1220.9302
## 1204 0.00000 1220.9302
## 1205 0.00000 1220.9302
## 1206 0.00000 1220.9302
## 1207 0.00000 1220.9302
## 1208 0.00000 1220.9302
## 1209 0.00000 1220.9302
## 1210 0.00000 1220.9302
## 1211 0.00000 1220.9302
## 1212 0.00000 1220.9302
## 1213 0.00000 1220.9302
## 1214 0.00000 1220.9302
## 1215 0.00000 1220.9302
## 1216 0.00000 1220.9302
## 1217 0.00000 1220.9302
## 1218 0.00000 1220.9302
## 1219 0.00000 1220.9302
## 1220 0.00000 1220.9302
## 1221 0.00000 1220.9302
## 1222 0.00000 1220.9302
## 1223 0.00000 1220.9302
## 1224 0.00000 1220.9302
## 1225 2188.95349 3122.0930
## 1226 2188.95349 3122.0930
## 1227 2188.95349 3122.0930
## 1228 2188.95349 3122.0930
## 1229 2188.95349 3122.0930
## 1230 2188.95349 3122.0930
## 1231 2188.95349 3122.0930
## 1232 2188.95349 3122.0930
## 1233 2188.95349 3122.0930
## 1234 2188.95349 3122.0930
## 1235 2188.95349 3122.0930
## 1236 2188.95349 3122.0930
## 1237 2188.95349 3122.0930
## 1238 2188.95349 3122.0930
## 1239 2188.95349 3122.0930
## 1240 2188.95349 3122.0930
## 1241 2188.95349 3122.0930
## 1242 2188.95349 3122.0930
## 1243 2188.95349 3122.0930
## 1244 2188.95349 3122.0930
## 1245 2188.95349 3122.0930
## 1246 2188.95349 3122.0930
## 1247 2188.95349 3122.0930
## 1248 2188.95349 3122.0930
## 1249 3654.06977 0.0000
## 1250 3654.06977 0.0000
## 1251 3654.06977 0.0000
## 1252 3654.06977 0.0000
## 1253 3654.06977 0.0000
## 1254 3654.06977 0.0000
## 1255 3654.06977 0.0000
## 1256 3654.06977 0.0000
## 1257 3654.06977 0.0000
## 1258 3654.06977 0.0000
## 1259 3654.06977 0.0000
## 1260 3654.06977 0.0000
## 1261 3654.06977 0.0000
## 1262 3654.06977 0.0000
## 1263 3654.06977 0.0000
## 1264 3654.06977 0.0000
## 1265 3654.06977 0.0000
## 1266 3654.06977 0.0000
## 1267 3654.06977 0.0000
## 1268 3654.06977 0.0000
## 1269 3654.06977 0.0000
## 1270 3654.06977 0.0000
## 1271 3654.06977 0.0000
## 1272 3654.06977 0.0000
## 1273 287.79070 3270.3488
## 1274 287.79070 3270.3488
## 1275 287.79070 3270.3488
## 1276 287.79070 3270.3488
## 1277 287.79070 3270.3488
## 1278 287.79070 3270.3488
## 1279 287.79070 3270.3488
## 1280 287.79070 3270.3488
## 1281 287.79070 3270.3488
## 1282 287.79070 3270.3488
## 1283 287.79070 3270.3488
## 1284 287.79070 3270.3488
## 1285 287.79070 3270.3488
## 1286 287.79070 3270.3488
## 1287 287.79070 3270.3488
## 1288 287.79070 3270.3488
## 1289 287.79070 3270.3488
## 1290 287.79070 3270.3488
## 1291 287.79070 3270.3488
## 1292 287.79070 3270.3488
## 1293 287.79070 3270.3488
## 1294 287.79070 3270.3488
## 1295 287.79070 3270.3488
## 1296 287.79070 3270.3488
## 1297 0.00000 109.0116
## 1298 0.00000 109.0116
## 1299 0.00000 109.0116
## 1300 0.00000 109.0116
## 1301 0.00000 109.0116
## 1302 0.00000 109.0116
## 1303 0.00000 109.0116
## 1304 0.00000 109.0116
## 1305 0.00000 109.0116
## 1306 0.00000 109.0116
## 1307 0.00000 109.0116
## 1308 0.00000 109.0116
## 1309 0.00000 109.0116
## 1310 0.00000 109.0116
## 1311 0.00000 109.0116
## 1312 0.00000 109.0116
## 1313 0.00000 109.0116
## 1314 0.00000 109.0116
## 1315 0.00000 109.0116
## 1316 0.00000 109.0116
## 1317 0.00000 109.0116
## 1318 0.00000 109.0116
## 1319 0.00000 109.0116
## 1320 0.00000 109.0116
## 1321 0.00000 928.7791
## 1322 0.00000 928.7791
## 1323 0.00000 928.7791
## 1324 0.00000 928.7791
## 1325 0.00000 928.7791
## 1326 0.00000 928.7791
## 1327 0.00000 928.7791
## 1328 0.00000 928.7791
## 1329 0.00000 928.7791
## 1330 0.00000 928.7791
## 1331 0.00000 928.7791
## 1332 0.00000 928.7791
## 1333 0.00000 928.7791
## 1334 0.00000 928.7791
## 1335 0.00000 928.7791
## 1336 0.00000 928.7791
## 1337 0.00000 928.7791
## 1338 0.00000 928.7791
## 1339 0.00000 928.7791
## 1340 0.00000 928.7791
## 1341 0.00000 928.7791
## 1342 0.00000 928.7791
## 1343 0.00000 928.7791
## 1344 0.00000 928.7791
## 1345 635.75581 981.9767
## 1346 635.75581 981.9767
## 1347 635.75581 981.9767
## 1348 635.75581 981.9767
## 1349 635.75581 981.9767
## 1350 635.75581 981.9767
## 1351 635.75581 981.9767
## 1352 635.75581 981.9767
## 1353 635.75581 981.9767
## 1354 635.75581 981.9767
## 1355 635.75581 981.9767
## 1356 635.75581 981.9767
## 1357 635.75581 981.9767
## 1358 635.75581 981.9767
## 1359 635.75581 981.9767
## 1360 635.75581 981.9767
## 1361 635.75581 981.9767
## 1362 635.75581 981.9767
## 1363 635.75581 981.9767
## 1364 635.75581 981.9767
## 1365 635.75581 981.9767
## 1366 635.75581 981.9767
## 1367 635.75581 981.9767
## 1368 635.75581 981.9767
## 1369 2162.79070 2982.5581
## 1370 2162.79070 2982.5581
## 1371 2162.79070 2982.5581
## 1372 2162.79070 2982.5581
## 1373 2162.79070 2982.5581
## 1374 2162.79070 2982.5581
## 1375 2162.79070 2982.5581
## 1376 2162.79070 2982.5581
## 1377 2162.79070 2982.5581
## 1378 2162.79070 2982.5581
## 1379 2162.79070 2982.5581
## 1380 2162.79070 2982.5581
## 1381 2162.79070 2982.5581
## 1382 2162.79070 2982.5581
## 1383 2162.79070 2982.5581
## 1384 2162.79070 2982.5581
## 1385 2162.79070 2982.5581
## 1386 2162.79070 2982.5581
## 1387 2162.79070 2982.5581
## 1388 2162.79070 2982.5581
## 1389 2162.79070 2982.5581
## 1390 2162.79070 2982.5581
## 1391 2162.79070 2982.5581
## 1392 2162.79070 2982.5581
## 1393 1090.11628 2398.2558
## 1394 1090.11628 2398.2558
## 1395 1090.11628 2398.2558
## 1396 1090.11628 2398.2558
## 1397 1090.11628 2398.2558
## 1398 1090.11628 2398.2558
## 1399 1090.11628 2398.2558
## 1400 1090.11628 2398.2558
## 1401 1090.11628 2398.2558
## 1402 1090.11628 2398.2558
## 1403 1090.11628 2398.2558
## 1404 1090.11628 2398.2558
## 1405 1090.11628 2398.2558
## 1406 1090.11628 2398.2558
## 1407 1090.11628 2398.2558
## 1408 1090.11628 2398.2558
## 1409 1090.11628 2398.2558
## 1410 1090.11628 2398.2558
## 1411 1090.11628 2398.2558
## 1412 1090.11628 2398.2558
## 1413 1090.11628 2398.2558
## 1414 1090.11628 2398.2558
## 1415 1090.11628 2398.2558
## 1416 1090.11628 2398.2558
## 1417 0.00000 6793.6047
## 1418 0.00000 6793.6047
## 1419 0.00000 6793.6047
## 1420 0.00000 6793.6047
## 1421 0.00000 6793.6047
## 1422 0.00000 6793.6047
## 1423 0.00000 6793.6047
## 1424 0.00000 6793.6047
## 1425 0.00000 6793.6047
## 1426 0.00000 6793.6047
## 1427 0.00000 6793.6047
## 1428 0.00000 6793.6047
## 1429 0.00000 6793.6047
## 1430 0.00000 6793.6047
## 1431 0.00000 6793.6047
## 1432 0.00000 6793.6047
## 1433 0.00000 6793.6047
## 1434 0.00000 6793.6047
## 1435 0.00000 6793.6047
## 1436 0.00000 6793.6047
## 1437 0.00000 6793.6047
## 1438 0.00000 6793.6047
## 1439 0.00000 6793.6047
## 1440 0.00000 6793.6047
## 1441 2215.11628 2215.1163
## 1442 2215.11628 2215.1163
## 1443 2215.11628 2215.1163
## 1444 2215.11628 2215.1163
## 1445 2215.11628 2215.1163
## 1446 2215.11628 2215.1163
## 1447 2215.11628 2215.1163
## 1448 2215.11628 2215.1163
## 1449 2215.11628 2215.1163
## 1450 2215.11628 2215.1163
## 1451 2215.11628 2215.1163
## 1452 2215.11628 2215.1163
## 1453 2215.11628 2215.1163
## 1454 2215.11628 2215.1163
## 1455 2215.11628 2215.1163
## 1456 2215.11628 2215.1163
## 1457 2215.11628 2215.1163
## 1458 2215.11628 2215.1163
## 1459 2215.11628 2215.1163
## 1460 2215.11628 2215.1163
## 1461 2215.11628 2215.1163
## 1462 2215.11628 2215.1163
## 1463 2215.11628 2215.1163
## 1464 2215.11628 2215.1163
## 1465 0.00000 5450.5814
## 1466 0.00000 5450.5814
## 1467 0.00000 5450.5814
## 1468 0.00000 5450.5814
## 1469 0.00000 5450.5814
## 1470 0.00000 5450.5814
## 1471 0.00000 5450.5814
## 1472 0.00000 5450.5814
## 1473 0.00000 5450.5814
## 1474 0.00000 5450.5814
## 1475 0.00000 5450.5814
## 1476 0.00000 5450.5814
## 1477 0.00000 5450.5814
## 1478 0.00000 5450.5814
## 1479 0.00000 5450.5814
## 1480 0.00000 5450.5814
## 1481 0.00000 5450.5814
## 1482 0.00000 5450.5814
## 1483 0.00000 5450.5814
## 1484 0.00000 5450.5814
## 1485 0.00000 5450.5814
## 1486 0.00000 5450.5814
## 1487 0.00000 5450.5814
## 1488 0.00000 5450.5814
## 1489 0.00000 697.6744
## 1490 0.00000 697.6744
## 1491 0.00000 697.6744
## 1492 0.00000 697.6744
## 1493 0.00000 697.6744
## 1494 0.00000 697.6744
## 1495 0.00000 697.6744
## 1496 0.00000 697.6744
## 1497 0.00000 697.6744
## 1498 0.00000 697.6744
## 1499 0.00000 697.6744
## 1500 0.00000 697.6744
## 1501 0.00000 697.6744
## 1502 0.00000 697.6744
## 1503 0.00000 697.6744
## 1504 0.00000 697.6744
## 1505 0.00000 697.6744
## 1506 0.00000 697.6744
## 1507 0.00000 697.6744
## 1508 0.00000 697.6744
## 1509 0.00000 697.6744
## 1510 0.00000 697.6744
## 1511 0.00000 697.6744
## 1512 0.00000 697.6744
## 1513 0.00000 1229.6512
## 1514 0.00000 1229.6512
## 1515 0.00000 1229.6512
## 1516 0.00000 1229.6512
## 1517 0.00000 1229.6512
## 1518 0.00000 1229.6512
## 1519 0.00000 1229.6512
## 1520 0.00000 1229.6512
## 1521 0.00000 1229.6512
## 1522 0.00000 1229.6512
## 1523 0.00000 1229.6512
## 1524 0.00000 1229.6512
## 1525 0.00000 1229.6512
## 1526 0.00000 1229.6512
## 1527 0.00000 1229.6512
## 1528 0.00000 1229.6512
## 1529 0.00000 1229.6512
## 1530 0.00000 1229.6512
## 1531 0.00000 1229.6512
## 1532 0.00000 1229.6512
## 1533 0.00000 1229.6512
## 1534 0.00000 1229.6512
## 1535 0.00000 1229.6512
## 1536 0.00000 1229.6512
## 1537 635.75581 981.9767
## 1538 635.75581 981.9767
## 1539 635.75581 981.9767
## 1540 635.75581 981.9767
## 1541 635.75581 981.9767
## 1542 635.75581 981.9767
## 1543 635.75581 981.9767
## 1544 635.75581 981.9767
## 1545 635.75581 981.9767
## 1546 635.75581 981.9767
## 1547 635.75581 981.9767
## 1548 635.75581 981.9767
## 1549 635.75581 981.9767
## 1550 635.75581 981.9767
## 1551 635.75581 981.9767
## 1552 635.75581 981.9767
## 1553 635.75581 981.9767
## 1554 635.75581 981.9767
## 1555 635.75581 981.9767
## 1556 635.75581 981.9767
## 1557 635.75581 981.9767
## 1558 635.75581 981.9767
## 1559 635.75581 981.9767
## 1560 635.75581 981.9767
## 1561 0.00000 2337.2093
## 1562 0.00000 2337.2093
## 1563 0.00000 2337.2093
## 1564 0.00000 2337.2093
## 1565 0.00000 2337.2093
## 1566 0.00000 2337.2093
## 1567 0.00000 2337.2093
## 1568 0.00000 2337.2093
## 1569 0.00000 2337.2093
## 1570 0.00000 2337.2093
## 1571 0.00000 2337.2093
## 1572 0.00000 2337.2093
## 1573 0.00000 2337.2093
## 1574 0.00000 2337.2093
## 1575 0.00000 2337.2093
## 1576 0.00000 2337.2093
## 1577 0.00000 2337.2093
## 1578 0.00000 2337.2093
## 1579 0.00000 2337.2093
## 1580 0.00000 2337.2093
## 1581 0.00000 2337.2093
## 1582 0.00000 2337.2093
## 1583 0.00000 2337.2093
## 1584 0.00000 2337.2093
## 1585 235.46512 1308.1395
## 1586 235.46512 1308.1395
## 1587 235.46512 1308.1395
## 1588 235.46512 1308.1395
## 1589 235.46512 1308.1395
## 1590 235.46512 1308.1395
## 1591 235.46512 1308.1395
## 1592 235.46512 1308.1395
## 1593 235.46512 1308.1395
## 1594 235.46512 1308.1395
## 1595 235.46512 1308.1395
## 1596 235.46512 1308.1395
## 1597 235.46512 1308.1395
## 1598 235.46512 1308.1395
## 1599 235.46512 1308.1395
## 1600 235.46512 1308.1395
## 1601 235.46512 1308.1395
## 1602 235.46512 1308.1395
## 1603 235.46512 1308.1395
## 1604 235.46512 1308.1395
## 1605 235.46512 1308.1395
## 1606 235.46512 1308.1395
## 1607 235.46512 1308.1395
## 1608 235.46512 1308.1395
## 1609 0.00000 1090.1163
## 1610 0.00000 1090.1163
## 1611 0.00000 1090.1163
## 1612 0.00000 1090.1163
## 1613 0.00000 1090.1163
## 1614 0.00000 1090.1163
## 1615 0.00000 1090.1163
## 1616 0.00000 1090.1163
## 1617 0.00000 1090.1163
## 1618 0.00000 1090.1163
## 1619 0.00000 1090.1163
## 1620 0.00000 1090.1163
## 1621 0.00000 1090.1163
## 1622 0.00000 1090.1163
## 1623 0.00000 1090.1163
## 1624 0.00000 1090.1163
## 1625 0.00000 1090.1163
## 1626 0.00000 1090.1163
## 1627 0.00000 1090.1163
## 1628 0.00000 1090.1163
## 1629 0.00000 1090.1163
## 1630 0.00000 1090.1163
## 1631 0.00000 1090.1163
## 1632 0.00000 1090.1163
## 1633 1081.39535 0.0000
## 1634 1081.39535 0.0000
## 1635 1081.39535 0.0000
## 1636 1081.39535 0.0000
## 1637 1081.39535 0.0000
## 1638 1081.39535 0.0000
## 1639 1081.39535 0.0000
## 1640 1081.39535 0.0000
## 1641 1081.39535 0.0000
## 1642 1081.39535 0.0000
## 1643 1081.39535 0.0000
## 1644 1081.39535 0.0000
## 1645 1081.39535 0.0000
## 1646 1081.39535 0.0000
## 1647 1081.39535 0.0000
## 1648 1081.39535 0.0000
## 1649 1081.39535 0.0000
## 1650 1081.39535 0.0000
## 1651 1081.39535 0.0000
## 1652 1081.39535 0.0000
## 1653 1081.39535 0.0000
## 1654 1081.39535 0.0000
## 1655 1081.39535 0.0000
## 1656 1081.39535 0.0000
## 1657 0.00000 0.0000
## 1658 0.00000 0.0000
## 1659 0.00000 0.0000
## 1660 0.00000 0.0000
## 1661 0.00000 0.0000
## 1662 0.00000 0.0000
## 1663 0.00000 0.0000
## 1664 0.00000 0.0000
## 1665 0.00000 0.0000
## 1666 0.00000 0.0000
## 1667 0.00000 0.0000
## 1668 0.00000 0.0000
## 1669 0.00000 0.0000
## 1670 0.00000 0.0000
## 1671 0.00000 0.0000
## 1672 0.00000 0.0000
## 1673 0.00000 0.0000
## 1674 0.00000 0.0000
## 1675 0.00000 0.0000
## 1676 0.00000 0.0000
## 1677 0.00000 0.0000
## 1678 0.00000 0.0000
## 1679 0.00000 0.0000
## 1680 0.00000 0.0000
## 1681 0.00000 0.0000
## 1682 0.00000 0.0000
## 1683 0.00000 0.0000
## 1684 0.00000 0.0000
## 1685 0.00000 0.0000
## 1686 0.00000 0.0000
## 1687 0.00000 0.0000
## 1688 0.00000 0.0000
## 1689 0.00000 0.0000
## 1690 0.00000 0.0000
## 1691 0.00000 0.0000
## 1692 0.00000 0.0000
## 1693 0.00000 0.0000
## 1694 0.00000 0.0000
## 1695 0.00000 0.0000
## 1696 0.00000 0.0000
## 1697 0.00000 0.0000
## 1698 0.00000 0.0000
## 1699 0.00000 0.0000
## 1700 0.00000 0.0000
## 1701 0.00000 0.0000
## 1702 0.00000 0.0000
## 1703 0.00000 0.0000
## 1704 0.00000 0.0000
## 1705 0.00000 0.0000
## 1706 0.00000 0.0000
## 1707 0.00000 0.0000
## 1708 0.00000 0.0000
## 1709 0.00000 0.0000
## 1710 0.00000 0.0000
## 1711 0.00000 0.0000
## 1712 0.00000 0.0000
## 1713 0.00000 0.0000
## 1714 0.00000 0.0000
## 1715 0.00000 0.0000
## 1716 0.00000 0.0000
## 1717 0.00000 0.0000
## 1718 0.00000 0.0000
## 1719 0.00000 0.0000
## 1720 0.00000 0.0000
## 1721 0.00000 0.0000
## 1722 0.00000 0.0000
## 1723 0.00000 0.0000
## 1724 0.00000 0.0000
## 1725 0.00000 0.0000
## 1726 0.00000 0.0000
## 1727 0.00000 0.0000
## 1728 0.00000 0.0000
## 1729 635.75581 981.9767
## 1730 635.75581 981.9767
## 1731 635.75581 981.9767
## 1732 635.75581 981.9767
## 1733 635.75581 981.9767
## 1734 635.75581 981.9767
## 1735 635.75581 981.9767
## 1736 635.75581 981.9767
## 1737 635.75581 981.9767
## 1738 635.75581 981.9767
## 1739 635.75581 981.9767
## 1740 635.75581 981.9767
## 1741 635.75581 981.9767
## 1742 635.75581 981.9767
## 1743 635.75581 981.9767
## 1744 635.75581 981.9767
## 1745 635.75581 981.9767
## 1746 635.75581 981.9767
## 1747 635.75581 981.9767
## 1748 635.75581 981.9767
## 1749 635.75581 981.9767
## 1750 635.75581 981.9767
## 1751 635.75581 981.9767
## 1752 635.75581 981.9767
## 1753 0.00000 1622.0930
## 1754 0.00000 1622.0930
## 1755 0.00000 1622.0930
## 1756 0.00000 1622.0930
## 1757 0.00000 1622.0930
## 1758 0.00000 1622.0930
## 1759 0.00000 1622.0930
## 1760 0.00000 1622.0930
## 1761 0.00000 1622.0930
## 1762 0.00000 1622.0930
## 1763 0.00000 1622.0930
## 1764 0.00000 1622.0930
## 1765 0.00000 1622.0930
## 1766 0.00000 1622.0930
## 1767 0.00000 1622.0930
## 1768 0.00000 1622.0930
## 1769 0.00000 1622.0930
## 1770 0.00000 1622.0930
## 1771 0.00000 1622.0930
## 1772 0.00000 1622.0930
## 1773 0.00000 1622.0930
## 1774 0.00000 1622.0930
## 1775 0.00000 1622.0930
## 1776 0.00000 1622.0930
## 1777 1055.23256 1613.3721
## 1778 1055.23256 1613.3721
## 1779 1055.23256 1613.3721
## 1780 1055.23256 1613.3721
## 1781 1055.23256 1613.3721
## 1782 1055.23256 1613.3721
## 1783 1055.23256 1613.3721
## 1784 1055.23256 1613.3721
## 1785 1055.23256 1613.3721
## 1786 1055.23256 1613.3721
## 1787 1055.23256 1613.3721
## 1788 1055.23256 1613.3721
## 1789 1055.23256 1613.3721
## 1790 1055.23256 1613.3721
## 1791 1055.23256 1613.3721
## 1792 1055.23256 1613.3721
## 1793 1055.23256 1613.3721
## 1794 1055.23256 1613.3721
## 1795 1055.23256 1613.3721
## 1796 1055.23256 1613.3721
## 1797 1055.23256 1613.3721
## 1798 1055.23256 1613.3721
## 1799 1055.23256 1613.3721
## 1800 1055.23256 1613.3721
## 1801 3427.32558 2136.6279
## 1802 3427.32558 2136.6279
## 1803 3427.32558 2136.6279
## 1804 3427.32558 2136.6279
## 1805 3427.32558 2136.6279
## 1806 3427.32558 2136.6279
## 1807 3427.32558 2136.6279
## 1808 3427.32558 2136.6279
## 1809 3427.32558 2136.6279
## 1810 3427.32558 2136.6279
## 1811 3427.32558 2136.6279
## 1812 3427.32558 2136.6279
## 1813 3427.32558 2136.6279
## 1814 3427.32558 2136.6279
## 1815 3427.32558 2136.6279
## 1816 3427.32558 2136.6279
## 1817 3427.32558 2136.6279
## 1818 3427.32558 2136.6279
## 1819 3427.32558 2136.6279
## 1820 3427.32558 2136.6279
## 1821 3427.32558 2136.6279
## 1822 3427.32558 2136.6279
## 1823 3427.32558 2136.6279
## 1824 3427.32558 2136.6279
## 1825 3706.39535 1090.1163
## 1826 3706.39535 1090.1163
## 1827 3706.39535 1090.1163
## 1828 3706.39535 1090.1163
## 1829 3706.39535 1090.1163
## 1830 3706.39535 1090.1163
## 1831 3706.39535 1090.1163
## 1832 3706.39535 1090.1163
## 1833 3706.39535 1090.1163
## 1834 3706.39535 1090.1163
## 1835 3706.39535 1090.1163
## 1836 3706.39535 1090.1163
## 1837 3706.39535 1090.1163
## 1838 3706.39535 1090.1163
## 1839 3706.39535 1090.1163
## 1840 3706.39535 1090.1163
## 1841 3706.39535 1090.1163
## 1842 3706.39535 1090.1163
## 1843 3706.39535 1090.1163
## 1844 3706.39535 1090.1163
## 1845 3706.39535 1090.1163
## 1846 3706.39535 1090.1163
## 1847 3706.39535 1090.1163
## 1848 3706.39535 1090.1163
## 1849 1090.11628 1090.1163
## 1850 1090.11628 1090.1163
## 1851 1090.11628 1090.1163
## 1852 1090.11628 1090.1163
## 1853 1090.11628 1090.1163
## 1854 1090.11628 1090.1163
## 1855 1090.11628 1090.1163
## 1856 1090.11628 1090.1163
## 1857 1090.11628 1090.1163
## 1858 1090.11628 1090.1163
## 1859 1090.11628 1090.1163
## 1860 1090.11628 1090.1163
## 1861 1090.11628 1090.1163
## 1862 1090.11628 1090.1163
## 1863 1090.11628 1090.1163
## 1864 1090.11628 1090.1163
## 1865 1090.11628 1090.1163
## 1866 1090.11628 1090.1163
## 1867 1090.11628 1090.1163
## 1868 1090.11628 1090.1163
## 1869 1090.11628 1090.1163
## 1870 1090.11628 1090.1163
## 1871 1090.11628 1090.1163
## 1872 1090.11628 1090.1163
## 1873 1090.11628 3126.4535
## 1874 1090.11628 3126.4535
## 1875 1090.11628 3126.4535
## 1876 1090.11628 3126.4535
## 1877 1090.11628 3126.4535
## 1878 1090.11628 3126.4535
## 1879 1090.11628 3126.4535
## 1880 1090.11628 3126.4535
## 1881 1090.11628 3126.4535
## 1882 1090.11628 3126.4535
## 1883 1090.11628 3126.4535
## 1884 1090.11628 3126.4535
## 1885 1090.11628 3126.4535
## 1886 1090.11628 3126.4535
## 1887 1090.11628 3126.4535
## 1888 1090.11628 3126.4535
## 1889 1090.11628 3126.4535
## 1890 1090.11628 3126.4535
## 1891 1090.11628 3126.4535
## 1892 1090.11628 3126.4535
## 1893 1090.11628 3126.4535
## 1894 1090.11628 3126.4535
## 1895 1090.11628 3126.4535
## 1896 1090.11628 3126.4535
## 1897 0.00000 1077.0349
## 1898 0.00000 1077.0349
## 1899 0.00000 1077.0349
## 1900 0.00000 1077.0349
## 1901 0.00000 1077.0349
## 1902 0.00000 1077.0349
## 1903 0.00000 1077.0349
## 1904 0.00000 1077.0349
## 1905 0.00000 1077.0349
## 1906 0.00000 1077.0349
## 1907 0.00000 1077.0349
## 1908 0.00000 1077.0349
## 1909 0.00000 1077.0349
## 1910 0.00000 1077.0349
## 1911 0.00000 1077.0349
## 1912 0.00000 1077.0349
## 1913 0.00000 1077.0349
## 1914 0.00000 1077.0349
## 1915 0.00000 1077.0349
## 1916 0.00000 1077.0349
## 1917 0.00000 1077.0349
## 1918 0.00000 1077.0349
## 1919 0.00000 1077.0349
## 1920 0.00000 1077.0349
## 1921 635.75581 981.9767
## 1922 635.75581 981.9767
## 1923 635.75581 981.9767
## 1924 635.75581 981.9767
## 1925 635.75581 981.9767
## 1926 635.75581 981.9767
## 1927 635.75581 981.9767
## 1928 635.75581 981.9767
## 1929 635.75581 981.9767
## 1930 635.75581 981.9767
## 1931 635.75581 981.9767
## 1932 635.75581 981.9767
## 1933 635.75581 981.9767
## 1934 635.75581 981.9767
## 1935 635.75581 981.9767
## 1936 635.75581 981.9767
## 1937 635.75581 981.9767
## 1938 635.75581 981.9767
## 1939 635.75581 981.9767
## 1940 635.75581 981.9767
## 1941 635.75581 981.9767
## 1942 635.75581 981.9767
## 1943 635.75581 981.9767
## 1944 635.75581 981.9767
## 1945 1055.23256 1526.1628
## 1946 1055.23256 1526.1628
## 1947 1055.23256 1526.1628
## 1948 1055.23256 1526.1628
## 1949 1055.23256 1526.1628
## 1950 1055.23256 1526.1628
## 1951 1055.23256 1526.1628
## 1952 1055.23256 1526.1628
## 1953 1055.23256 1526.1628
## 1954 1055.23256 1526.1628
## 1955 1055.23256 1526.1628
## 1956 1055.23256 1526.1628
## 1957 1055.23256 1526.1628
## 1958 1055.23256 1526.1628
## 1959 1055.23256 1526.1628
## 1960 1055.23256 1526.1628
## 1961 1055.23256 1526.1628
## 1962 1055.23256 1526.1628
## 1963 1055.23256 1526.1628
## 1964 1055.23256 1526.1628
## 1965 1055.23256 1526.1628
## 1966 1055.23256 1526.1628
## 1967 1055.23256 1526.1628
## 1968 1055.23256 1526.1628
## 1969 1090.11628 1793.0233
## 1970 1090.11628 1793.0233
## 1971 1090.11628 1793.0233
## 1972 1090.11628 1793.0233
## 1973 1090.11628 1793.0233
## 1974 1090.11628 1793.0233
## 1975 1090.11628 1793.0233
## 1976 1090.11628 1793.0233
## 1977 1090.11628 1793.0233
## 1978 1090.11628 1793.0233
## 1979 1090.11628 1793.0233
## 1980 1090.11628 1793.0233
## 1981 1090.11628 1793.0233
## 1982 1090.11628 1793.0233
## 1983 1090.11628 1793.0233
## 1984 1090.11628 1793.0233
## 1985 1090.11628 1793.0233
## 1986 1090.11628 1793.0233
## 1987 1090.11628 1793.0233
## 1988 1090.11628 1793.0233
## 1989 1090.11628 1793.0233
## 1990 1090.11628 1793.0233
## 1991 1090.11628 1793.0233
## 1992 1090.11628 1793.0233
## 1993 2180.23256 3165.6977
## 1994 2180.23256 3165.6977
## 1995 2180.23256 3165.6977
## 1996 2180.23256 3165.6977
## 1997 2180.23256 3165.6977
## 1998 2180.23256 3165.6977
## 1999 2180.23256 3165.6977
## 2000 2180.23256 3165.6977
## 2001 2180.23256 3165.6977
## 2002 2180.23256 3165.6977
## 2003 2180.23256 3165.6977
## 2004 2180.23256 3165.6977
## 2005 2180.23256 3165.6977
## 2006 2180.23256 3165.6977
## 2007 2180.23256 3165.6977
## 2008 2180.23256 3165.6977
## 2009 2180.23256 3165.6977
## 2010 2180.23256 3165.6977
## 2011 2180.23256 3165.6977
## 2012 2180.23256 3165.6977
## 2013 2180.23256 3165.6977
## 2014 2180.23256 3165.6977
## 2015 2180.23256 3165.6977
## 2016 2180.23256 3165.6977
## 2017 549.41860 1090.1163
## 2018 549.41860 1090.1163
## 2019 549.41860 1090.1163
## 2020 549.41860 1090.1163
## 2021 549.41860 1090.1163
## 2022 549.41860 1090.1163
## 2023 549.41860 1090.1163
## 2024 549.41860 1090.1163
## 2025 549.41860 1090.1163
## 2026 549.41860 1090.1163
## 2027 549.41860 1090.1163
## 2028 549.41860 1090.1163
## 2029 549.41860 1090.1163
## 2030 549.41860 1090.1163
## 2031 549.41860 1090.1163
## 2032 549.41860 1090.1163
## 2033 549.41860 1090.1163
## 2034 549.41860 1090.1163
## 2035 549.41860 1090.1163
## 2036 549.41860 1090.1163
## 2037 549.41860 1090.1163
## 2038 549.41860 1090.1163
## 2039 549.41860 1090.1163
## 2040 549.41860 1090.1163
## 2041 0.00000 767.4419
## 2042 0.00000 767.4419
## 2043 0.00000 767.4419
## 2044 0.00000 767.4419
## 2045 0.00000 767.4419
## 2046 0.00000 767.4419
## 2047 0.00000 767.4419
## 2048 0.00000 767.4419
## 2049 0.00000 767.4419
## 2050 0.00000 767.4419
## 2051 0.00000 767.4419
## 2052 0.00000 767.4419
## 2053 0.00000 767.4419
## 2054 0.00000 767.4419
## 2055 0.00000 767.4419
## 2056 0.00000 767.4419
## 2057 0.00000 767.4419
## 2058 0.00000 767.4419
## 2059 0.00000 767.4419
## 2060 0.00000 767.4419
## 2061 0.00000 767.4419
## 2062 0.00000 767.4419
## 2063 0.00000 767.4419
## 2064 0.00000 767.4419
## 2065 0.00000 1460.7558
## 2066 0.00000 1460.7558
## 2067 0.00000 1460.7558
## 2068 0.00000 1460.7558
## 2069 0.00000 1460.7558
## 2070 0.00000 1460.7558
## 2071 0.00000 1460.7558
## 2072 0.00000 1460.7558
## 2073 0.00000 1460.7558
## 2074 0.00000 1460.7558
## 2075 0.00000 1460.7558
## 2076 0.00000 1460.7558
## 2077 0.00000 1460.7558
## 2078 0.00000 1460.7558
## 2079 0.00000 1460.7558
## 2080 0.00000 1460.7558
## 2081 0.00000 1460.7558
## 2082 0.00000 1460.7558
## 2083 0.00000 1460.7558
## 2084 0.00000 1460.7558
## 2085 0.00000 1460.7558
## 2086 0.00000 1460.7558
## 2087 0.00000 1460.7558
## 2088 0.00000 1460.7558
## 2089 126.45349 187.5000
## 2090 126.45349 187.5000
## 2091 126.45349 187.5000
## 2092 126.45349 187.5000
## 2093 126.45349 187.5000
## 2094 126.45349 187.5000
## 2095 126.45349 187.5000
## 2096 126.45349 187.5000
## 2097 126.45349 187.5000
## 2098 126.45349 187.5000
## 2099 126.45349 187.5000
## 2100 126.45349 187.5000
## 2101 126.45349 187.5000
## 2102 126.45349 187.5000
## 2103 126.45349 187.5000
## 2104 126.45349 187.5000
## 2105 126.45349 187.5000
## 2106 126.45349 187.5000
## 2107 126.45349 187.5000
## 2108 126.45349 187.5000
## 2109 126.45349 187.5000
## 2110 126.45349 187.5000
## 2111 126.45349 187.5000
## 2112 126.45349 187.5000
## 2113 635.75581 981.9767
## 2114 635.75581 981.9767
## 2115 635.75581 981.9767
## 2116 635.75581 981.9767
## 2117 635.75581 981.9767
## 2118 635.75581 981.9767
## 2119 635.75581 981.9767
## 2120 635.75581 981.9767
## 2121 635.75581 981.9767
## 2122 635.75581 981.9767
## 2123 635.75581 981.9767
## 2124 635.75581 981.9767
## 2125 635.75581 981.9767
## 2126 635.75581 981.9767
## 2127 635.75581 981.9767
## 2128 635.75581 981.9767
## 2129 635.75581 981.9767
## 2130 635.75581 981.9767
## 2131 635.75581 981.9767
## 2132 635.75581 981.9767
## 2133 635.75581 981.9767
## 2134 635.75581 981.9767
## 2135 635.75581 981.9767
## 2136 635.75581 981.9767
## 2137 1029.06977 436.0465
## 2138 1029.06977 436.0465
## 2139 1029.06977 436.0465
## 2140 1029.06977 436.0465
## 2141 1029.06977 436.0465
## 2142 1029.06977 436.0465
## 2143 1029.06977 436.0465
## 2144 1029.06977 436.0465
## 2145 1029.06977 436.0465
## 2146 1029.06977 436.0465
## 2147 1029.06977 436.0465
## 2148 1029.06977 436.0465
## 2149 1029.06977 436.0465
## 2150 1029.06977 436.0465
## 2151 1029.06977 436.0465
## 2152 1029.06977 436.0465
## 2153 1029.06977 436.0465
## 2154 1029.06977 436.0465
## 2155 1029.06977 436.0465
## 2156 1029.06977 436.0465
## 2157 1029.06977 436.0465
## 2158 1029.06977 436.0465
## 2159 1029.06977 436.0465
## 2160 1029.06977 436.0465
## 2161 0.00000 1705.8140
## 2162 0.00000 1705.8140
## 2163 0.00000 1705.8140
## 2164 0.00000 1705.8140
## 2165 0.00000 1705.8140
## 2166 0.00000 1705.8140
## 2167 0.00000 1705.8140
## 2168 0.00000 1705.8140
## 2169 0.00000 1705.8140
## 2170 0.00000 1705.8140
## 2171 0.00000 1705.8140
## 2172 0.00000 1705.8140
## 2173 0.00000 1705.8140
## 2174 0.00000 1705.8140
## 2175 0.00000 1705.8140
## 2176 0.00000 1705.8140
## 2177 0.00000 1705.8140
## 2178 0.00000 1705.8140
## 2179 0.00000 1705.8140
## 2180 0.00000 1705.8140
## 2181 0.00000 1705.8140
## 2182 0.00000 1705.8140
## 2183 0.00000 1705.8140
## 2184 0.00000 1705.8140
## 2185 2188.95349 3340.1163
## 2186 2188.95349 3340.1163
## 2187 2188.95349 3340.1163
## 2188 2188.95349 3340.1163
## 2189 2188.95349 3340.1163
## 2190 2188.95349 3340.1163
## 2191 2188.95349 3340.1163
## 2192 2188.95349 3340.1163
## 2193 2188.95349 3340.1163
## 2194 2188.95349 3340.1163
## 2195 2188.95349 3340.1163
## 2196 2188.95349 3340.1163
## 2197 2188.95349 3340.1163
## 2198 2188.95349 3340.1163
## 2199 2188.95349 3340.1163
## 2200 2188.95349 3340.1163
## 2201 2188.95349 3340.1163
## 2202 2188.95349 3340.1163
## 2203 2188.95349 3340.1163
## 2204 2188.95349 3340.1163
## 2205 2188.95349 3340.1163
## 2206 2188.95349 3340.1163
## 2207 2188.95349 3340.1163
## 2208 2188.95349 3340.1163
## 2209 3654.06977 0.0000
## 2210 3654.06977 0.0000
## 2211 3654.06977 0.0000
## 2212 3654.06977 0.0000
## 2213 3654.06977 0.0000
## 2214 3654.06977 0.0000
## 2215 3654.06977 0.0000
## 2216 3654.06977 0.0000
## 2217 3654.06977 0.0000
## 2218 3654.06977 0.0000
## 2219 3654.06977 0.0000
## 2220 3654.06977 0.0000
## 2221 3654.06977 0.0000
## 2222 3654.06977 0.0000
## 2223 3654.06977 0.0000
## 2224 3654.06977 0.0000
## 2225 3654.06977 0.0000
## 2226 3654.06977 0.0000
## 2227 3654.06977 0.0000
## 2228 3654.06977 0.0000
## 2229 3654.06977 0.0000
## 2230 3654.06977 0.0000
## 2231 3654.06977 0.0000
## 2232 3654.06977 0.0000
## 2233 287.79070 3270.3488
## 2234 287.79070 3270.3488
## 2235 287.79070 3270.3488
## 2236 287.79070 3270.3488
## 2237 287.79070 3270.3488
## 2238 287.79070 3270.3488
## 2239 287.79070 3270.3488
## 2240 287.79070 3270.3488
## 2241 287.79070 3270.3488
## 2242 287.79070 3270.3488
## 2243 287.79070 3270.3488
## 2244 287.79070 3270.3488
## 2245 287.79070 3270.3488
## 2246 287.79070 3270.3488
## 2247 287.79070 3270.3488
## 2248 287.79070 3270.3488
## 2249 287.79070 3270.3488
## 2250 287.79070 3270.3488
## 2251 287.79070 3270.3488
## 2252 287.79070 3270.3488
## 2253 287.79070 3270.3488
## 2254 287.79070 3270.3488
## 2255 287.79070 3270.3488
## 2256 287.79070 3270.3488
## 2257 0.00000 218.0233
## 2258 0.00000 218.0233
## 2259 0.00000 218.0233
## 2260 0.00000 218.0233
## 2261 0.00000 218.0233
## 2262 0.00000 218.0233
## 2263 0.00000 218.0233
## 2264 0.00000 218.0233
## 2265 0.00000 218.0233
## 2266 0.00000 218.0233
## 2267 0.00000 218.0233
## 2268 0.00000 218.0233
## 2269 0.00000 218.0233
## 2270 0.00000 218.0233
## 2271 0.00000 218.0233
## 2272 0.00000 218.0233
## 2273 0.00000 218.0233
## 2274 0.00000 218.0233
## 2275 0.00000 218.0233
## 2276 0.00000 218.0233
## 2277 0.00000 218.0233
## 2278 0.00000 218.0233
## 2279 0.00000 218.0233
## 2280 0.00000 218.0233
## 2281 0.00000 928.7791
## 2282 0.00000 928.7791
## 2283 0.00000 928.7791
## 2284 0.00000 928.7791
## 2285 0.00000 928.7791
## 2286 0.00000 928.7791
## 2287 0.00000 928.7791
## 2288 0.00000 928.7791
## 2289 0.00000 928.7791
## 2290 0.00000 928.7791
## 2291 0.00000 928.7791
## 2292 0.00000 928.7791
## 2293 0.00000 928.7791
## 2294 0.00000 928.7791
## 2295 0.00000 928.7791
## 2296 0.00000 928.7791
## 2297 0.00000 928.7791
## 2298 0.00000 928.7791
## 2299 0.00000 928.7791
## 2300 0.00000 928.7791
## 2301 0.00000 928.7791
## 2302 0.00000 928.7791
## 2303 0.00000 928.7791
## 2304 0.00000 928.7791
## 2305 635.75581 981.9767
## 2306 635.75581 981.9767
## 2307 635.75581 981.9767
## 2308 635.75581 981.9767
## 2309 635.75581 981.9767
## 2310 635.75581 981.9767
## 2311 635.75581 981.9767
## 2312 635.75581 981.9767
## 2313 635.75581 981.9767
## 2314 635.75581 981.9767
## 2315 635.75581 981.9767
## 2316 635.75581 981.9767
## 2317 635.75581 981.9767
## 2318 635.75581 981.9767
## 2319 635.75581 981.9767
## 2320 635.75581 981.9767
## 2321 635.75581 981.9767
## 2322 635.75581 981.9767
## 2323 635.75581 981.9767
## 2324 635.75581 981.9767
## 2325 635.75581 981.9767
## 2326 635.75581 981.9767
## 2327 635.75581 981.9767
## 2328 635.75581 981.9767
## 2329 2162.79070 3261.6279
## 2330 2162.79070 3261.6279
## 2331 2162.79070 3261.6279
## 2332 2162.79070 3261.6279
## 2333 2162.79070 3261.6279
## 2334 2162.79070 3261.6279
## 2335 2162.79070 3261.6279
## 2336 2162.79070 3261.6279
## 2337 2162.79070 3261.6279
## 2338 2162.79070 3261.6279
## 2339 2162.79070 3261.6279
## 2340 2162.79070 3261.6279
## 2341 2162.79070 3261.6279
## 2342 2162.79070 3261.6279
## 2343 2162.79070 3261.6279
## 2344 2162.79070 3261.6279
## 2345 2162.79070 3261.6279
## 2346 2162.79070 3261.6279
## 2347 2162.79070 3261.6279
## 2348 2162.79070 3261.6279
## 2349 2162.79070 3261.6279
## 2350 2162.79070 3261.6279
## 2351 2162.79070 3261.6279
## 2352 2162.79070 3261.6279
## 2353 1090.11628 2883.1395
## 2354 1090.11628 2883.1395
## 2355 1090.11628 2883.1395
## 2356 1090.11628 2883.1395
## 2357 1090.11628 2883.1395
## 2358 1090.11628 2883.1395
## 2359 1090.11628 2883.1395
## 2360 1090.11628 2883.1395
## 2361 1090.11628 2883.1395
## 2362 1090.11628 2883.1395
## 2363 1090.11628 2883.1395
## 2364 1090.11628 2883.1395
## 2365 1090.11628 2883.1395
## 2366 1090.11628 2883.1395
## 2367 1090.11628 2883.1395
## 2368 1090.11628 2883.1395
## 2369 1090.11628 2883.1395
## 2370 1090.11628 2883.1395
## 2371 1090.11628 2883.1395
## 2372 1090.11628 2883.1395
## 2373 1090.11628 2883.1395
## 2374 1090.11628 2883.1395
## 2375 1090.11628 2883.1395
## 2376 1090.11628 2883.1395
## 2377 0.00000 7011.6279
## 2378 0.00000 7011.6279
## 2379 0.00000 7011.6279
## 2380 0.00000 7011.6279
## 2381 0.00000 7011.6279
## 2382 0.00000 7011.6279
## 2383 0.00000 7011.6279
## 2384 0.00000 7011.6279
## 2385 0.00000 7011.6279
## 2386 0.00000 7011.6279
## 2387 0.00000 7011.6279
## 2388 0.00000 7011.6279
## 2389 0.00000 7011.6279
## 2390 0.00000 7011.6279
## 2391 0.00000 7011.6279
## 2392 0.00000 7011.6279
## 2393 0.00000 7011.6279
## 2394 0.00000 7011.6279
## 2395 0.00000 7011.6279
## 2396 0.00000 7011.6279
## 2397 0.00000 7011.6279
## 2398 0.00000 7011.6279
## 2399 0.00000 7011.6279
## 2400 0.00000 7011.6279
## 2401 2215.11628 2215.1163
## 2402 2215.11628 2215.1163
## 2403 2215.11628 2215.1163
## 2404 2215.11628 2215.1163
## 2405 2215.11628 2215.1163
## 2406 2215.11628 2215.1163
## 2407 2215.11628 2215.1163
## 2408 2215.11628 2215.1163
## 2409 2215.11628 2215.1163
## 2410 2215.11628 2215.1163
## 2411 2215.11628 2215.1163
## 2412 2215.11628 2215.1163
## 2413 2215.11628 2215.1163
## 2414 2215.11628 2215.1163
## 2415 2215.11628 2215.1163
## 2416 2215.11628 2215.1163
## 2417 2215.11628 2215.1163
## 2418 2215.11628 2215.1163
## 2419 2215.11628 2215.1163
## 2420 2215.11628 2215.1163
## 2421 2215.11628 2215.1163
## 2422 2215.11628 2215.1163
## 2423 2215.11628 2215.1163
## 2424 2215.11628 2215.1163
## 2425 0.00000 5450.5814
## 2426 0.00000 5450.5814
## 2427 0.00000 5450.5814
## 2428 0.00000 5450.5814
## 2429 0.00000 5450.5814
## 2430 0.00000 5450.5814
## 2431 0.00000 5450.5814
## 2432 0.00000 5450.5814
## 2433 0.00000 5450.5814
## 2434 0.00000 5450.5814
## 2435 0.00000 5450.5814
## 2436 0.00000 5450.5814
## 2437 0.00000 5450.5814
## 2438 0.00000 5450.5814
## 2439 0.00000 5450.5814
## 2440 0.00000 5450.5814
## 2441 0.00000 5450.5814
## 2442 0.00000 5450.5814
## 2443 0.00000 5450.5814
## 2444 0.00000 5450.5814
## 2445 0.00000 5450.5814
## 2446 0.00000 5450.5814
## 2447 0.00000 5450.5814
## 2448 0.00000 5450.5814
## 2449 0.00000 806.6860
## 2450 0.00000 806.6860
## 2451 0.00000 806.6860
## 2452 0.00000 806.6860
## 2453 0.00000 806.6860
## 2454 0.00000 806.6860
## 2455 0.00000 806.6860
## 2456 0.00000 806.6860
## 2457 0.00000 806.6860
## 2458 0.00000 806.6860
## 2459 0.00000 806.6860
## 2460 0.00000 806.6860
## 2461 0.00000 806.6860
## 2462 0.00000 806.6860
## 2463 0.00000 806.6860
## 2464 0.00000 806.6860
## 2465 0.00000 806.6860
## 2466 0.00000 806.6860
## 2467 0.00000 806.6860
## 2468 0.00000 806.6860
## 2469 0.00000 806.6860
## 2470 0.00000 806.6860
## 2471 0.00000 806.6860
## 2472 0.00000 806.6860
## 2473 0.00000 1229.6512
## 2474 0.00000 1229.6512
## 2475 0.00000 1229.6512
## 2476 0.00000 1229.6512
## 2477 0.00000 1229.6512
## 2478 0.00000 1229.6512
## 2479 0.00000 1229.6512
## 2480 0.00000 1229.6512
## 2481 0.00000 1229.6512
## 2482 0.00000 1229.6512
## 2483 0.00000 1229.6512
## 2484 0.00000 1229.6512
## 2485 0.00000 1229.6512
## 2486 0.00000 1229.6512
## 2487 0.00000 1229.6512
## 2488 0.00000 1229.6512
## 2489 0.00000 1229.6512
## 2490 0.00000 1229.6512
## 2491 0.00000 1229.6512
## 2492 0.00000 1229.6512
## 2493 0.00000 1229.6512
## 2494 0.00000 1229.6512
## 2495 0.00000 1229.6512
## 2496 0.00000 1229.6512
## 2497 635.75581 981.9767
## 2498 635.75581 981.9767
## 2499 635.75581 981.9767
## 2500 635.75581 981.9767
## 2501 635.75581 981.9767
## 2502 635.75581 981.9767
## 2503 635.75581 981.9767
## 2504 635.75581 981.9767
## 2505 635.75581 981.9767
## 2506 635.75581 981.9767
## 2507 635.75581 981.9767
## 2508 635.75581 981.9767
## 2509 635.75581 981.9767
## 2510 635.75581 981.9767
## 2511 635.75581 981.9767
## 2512 635.75581 981.9767
## 2513 635.75581 981.9767
## 2514 635.75581 981.9767
## 2515 635.75581 981.9767
## 2516 635.75581 981.9767
## 2517 635.75581 981.9767
## 2518 635.75581 981.9767
## 2519 635.75581 981.9767
## 2520 635.75581 981.9767
## 2521 0.00000 2616.2791
## 2522 0.00000 2616.2791
## 2523 0.00000 2616.2791
## 2524 0.00000 2616.2791
## 2525 0.00000 2616.2791
## 2526 0.00000 2616.2791
## 2527 0.00000 2616.2791
## 2528 0.00000 2616.2791
## 2529 0.00000 2616.2791
## 2530 0.00000 2616.2791
## 2531 0.00000 2616.2791
## 2532 0.00000 2616.2791
## 2533 0.00000 2616.2791
## 2534 0.00000 2616.2791
## 2535 0.00000 2616.2791
## 2536 0.00000 2616.2791
## 2537 0.00000 2616.2791
## 2538 0.00000 2616.2791
## 2539 0.00000 2616.2791
## 2540 0.00000 2616.2791
## 2541 0.00000 2616.2791
## 2542 0.00000 2616.2791
## 2543 0.00000 2616.2791
## 2544 0.00000 2616.2791
## 2545 235.46512 1793.0233
## 2546 235.46512 1793.0233
## 2547 235.46512 1793.0233
## 2548 235.46512 1793.0233
## 2549 235.46512 1793.0233
## 2550 235.46512 1793.0233
## 2551 235.46512 1793.0233
## 2552 235.46512 1793.0233
## 2553 235.46512 1793.0233
## 2554 235.46512 1793.0233
## 2555 235.46512 1793.0233
## 2556 235.46512 1793.0233
## 2557 235.46512 1793.0233
## 2558 235.46512 1793.0233
## 2559 235.46512 1793.0233
## 2560 235.46512 1793.0233
## 2561 235.46512 1793.0233
## 2562 235.46512 1793.0233
## 2563 235.46512 1793.0233
## 2564 235.46512 1793.0233
## 2565 235.46512 1793.0233
## 2566 235.46512 1793.0233
## 2567 235.46512 1793.0233
## 2568 235.46512 1793.0233
## 2569 0.00000 1308.1395
## 2570 0.00000 1308.1395
## 2571 0.00000 1308.1395
## 2572 0.00000 1308.1395
## 2573 0.00000 1308.1395
## 2574 0.00000 1308.1395
## 2575 0.00000 1308.1395
## 2576 0.00000 1308.1395
## 2577 0.00000 1308.1395
## 2578 0.00000 1308.1395
## 2579 0.00000 1308.1395
## 2580 0.00000 1308.1395
## 2581 0.00000 1308.1395
## 2582 0.00000 1308.1395
## 2583 0.00000 1308.1395
## 2584 0.00000 1308.1395
## 2585 0.00000 1308.1395
## 2586 0.00000 1308.1395
## 2587 0.00000 1308.1395
## 2588 0.00000 1308.1395
## 2589 0.00000 1308.1395
## 2590 0.00000 1308.1395
## 2591 0.00000 1308.1395
## 2592 0.00000 1308.1395
## 2593 1081.39535 0.0000
## 2594 1081.39535 0.0000
## 2595 1081.39535 0.0000
## 2596 1081.39535 0.0000
## 2597 1081.39535 0.0000
## 2598 1081.39535 0.0000
## 2599 1081.39535 0.0000
## 2600 1081.39535 0.0000
## 2601 1081.39535 0.0000
## 2602 1081.39535 0.0000
## 2603 1081.39535 0.0000
## 2604 1081.39535 0.0000
## 2605 1081.39535 0.0000
## 2606 1081.39535 0.0000
## 2607 1081.39535 0.0000
## 2608 1081.39535 0.0000
## 2609 1081.39535 0.0000
## 2610 1081.39535 0.0000
## 2611 1081.39535 0.0000
## 2612 1081.39535 0.0000
## 2613 1081.39535 0.0000
## 2614 1081.39535 0.0000
## 2615 1081.39535 0.0000
## 2616 1081.39535 0.0000
## 2617 0.00000 0.0000
## 2618 0.00000 0.0000
## 2619 0.00000 0.0000
## 2620 0.00000 0.0000
## 2621 0.00000 0.0000
## 2622 0.00000 0.0000
## 2623 0.00000 0.0000
## 2624 0.00000 0.0000
## 2625 0.00000 0.0000
## 2626 0.00000 0.0000
## 2627 0.00000 0.0000
## 2628 0.00000 0.0000
## 2629 0.00000 0.0000
## 2630 0.00000 0.0000
## 2631 0.00000 0.0000
## 2632 0.00000 0.0000
## 2633 0.00000 0.0000
## 2634 0.00000 0.0000
## 2635 0.00000 0.0000
## 2636 0.00000 0.0000
## 2637 0.00000 0.0000
## 2638 0.00000 0.0000
## 2639 0.00000 0.0000
## 2640 0.00000 0.0000
## 2641 0.00000 109.0116
## 2642 0.00000 109.0116
## 2643 0.00000 109.0116
## 2644 0.00000 109.0116
## 2645 0.00000 109.0116
## 2646 0.00000 109.0116
## 2647 0.00000 109.0116
## 2648 0.00000 109.0116
## 2649 0.00000 109.0116
## 2650 0.00000 109.0116
## 2651 0.00000 109.0116
## 2652 0.00000 109.0116
## 2653 0.00000 109.0116
## 2654 0.00000 109.0116
## 2655 0.00000 109.0116
## 2656 0.00000 109.0116
## 2657 0.00000 109.0116
## 2658 0.00000 109.0116
## 2659 0.00000 109.0116
## 2660 0.00000 109.0116
## 2661 0.00000 109.0116
## 2662 0.00000 109.0116
## 2663 0.00000 109.0116
## 2664 0.00000 109.0116
## 2665 0.00000 0.0000
## 2666 0.00000 0.0000
## 2667 0.00000 0.0000
## 2668 0.00000 0.0000
## 2669 0.00000 0.0000
## 2670 0.00000 0.0000
## 2671 0.00000 0.0000
## 2672 0.00000 0.0000
## 2673 0.00000 0.0000
## 2674 0.00000 0.0000
## 2675 0.00000 0.0000
## 2676 0.00000 0.0000
## 2677 0.00000 0.0000
## 2678 0.00000 0.0000
## 2679 0.00000 0.0000
## 2680 0.00000 0.0000
## 2681 0.00000 0.0000
## 2682 0.00000 0.0000
## 2683 0.00000 0.0000
## 2684 0.00000 0.0000
## 2685 0.00000 0.0000
## 2686 0.00000 0.0000
## 2687 0.00000 0.0000
## 2688 0.00000 0.0000
## 2689 635.75581 981.9767
## 2690 635.75581 981.9767
## 2691 635.75581 981.9767
## 2692 635.75581 981.9767
## 2693 635.75581 981.9767
## 2694 635.75581 981.9767
## 2695 635.75581 981.9767
## 2696 635.75581 981.9767
## 2697 635.75581 981.9767
## 2698 635.75581 981.9767
## 2699 635.75581 981.9767
## 2700 635.75581 981.9767
## 2701 635.75581 981.9767
## 2702 635.75581 981.9767
## 2703 635.75581 981.9767
## 2704 635.75581 981.9767
## 2705 635.75581 981.9767
## 2706 635.75581 981.9767
## 2707 635.75581 981.9767
## 2708 635.75581 981.9767
## 2709 635.75581 981.9767
## 2710 635.75581 981.9767
## 2711 635.75581 981.9767
## 2712 635.75581 981.9767
## 2713 0.00000 1901.1628
## 2714 0.00000 1901.1628
## 2715 0.00000 1901.1628
## 2716 0.00000 1901.1628
## 2717 0.00000 1901.1628
## 2718 0.00000 1901.1628
## 2719 0.00000 1901.1628
## 2720 0.00000 1901.1628
## 2721 0.00000 1901.1628
## 2722 0.00000 1901.1628
## 2723 0.00000 1901.1628
## 2724 0.00000 1901.1628
## 2725 0.00000 1901.1628
## 2726 0.00000 1901.1628
## 2727 0.00000 1901.1628
## 2728 0.00000 1901.1628
## 2729 0.00000 1901.1628
## 2730 0.00000 1901.1628
## 2731 0.00000 1901.1628
## 2732 0.00000 1901.1628
## 2733 0.00000 1901.1628
## 2734 0.00000 1901.1628
## 2735 0.00000 1901.1628
## 2736 0.00000 1901.1628
## 2737 1055.23256 2098.2558
## 2738 1055.23256 2098.2558
## 2739 1055.23256 2098.2558
## 2740 1055.23256 2098.2558
## 2741 1055.23256 2098.2558
## 2742 1055.23256 2098.2558
## 2743 1055.23256 2098.2558
## 2744 1055.23256 2098.2558
## 2745 1055.23256 2098.2558
## 2746 1055.23256 2098.2558
## 2747 1055.23256 2098.2558
## 2748 1055.23256 2098.2558
## 2749 1055.23256 2098.2558
## 2750 1055.23256 2098.2558
## 2751 1055.23256 2098.2558
## 2752 1055.23256 2098.2558
## 2753 1055.23256 2098.2558
## 2754 1055.23256 2098.2558
## 2755 1055.23256 2098.2558
## 2756 1055.23256 2098.2558
## 2757 1055.23256 2098.2558
## 2758 1055.23256 2098.2558
## 2759 1055.23256 2098.2558
## 2760 1055.23256 2098.2558
## 2761 3427.32558 2354.6512
## 2762 3427.32558 2354.6512
## 2763 3427.32558 2354.6512
## 2764 3427.32558 2354.6512
## 2765 3427.32558 2354.6512
## 2766 3427.32558 2354.6512
## 2767 3427.32558 2354.6512
## 2768 3427.32558 2354.6512
## 2769 3427.32558 2354.6512
## 2770 3427.32558 2354.6512
## 2771 3427.32558 2354.6512
## 2772 3427.32558 2354.6512
## 2773 3427.32558 2354.6512
## 2774 3427.32558 2354.6512
## 2775 3427.32558 2354.6512
## 2776 3427.32558 2354.6512
## 2777 3427.32558 2354.6512
## 2778 3427.32558 2354.6512
## 2779 3427.32558 2354.6512
## 2780 3427.32558 2354.6512
## 2781 3427.32558 2354.6512
## 2782 3427.32558 2354.6512
## 2783 3427.32558 2354.6512
## 2784 3427.32558 2354.6512
## 2785 3706.39535 1090.1163
## 2786 3706.39535 1090.1163
## 2787 3706.39535 1090.1163
## 2788 3706.39535 1090.1163
## 2789 3706.39535 1090.1163
## 2790 3706.39535 1090.1163
## 2791 3706.39535 1090.1163
## 2792 3706.39535 1090.1163
## 2793 3706.39535 1090.1163
## 2794 3706.39535 1090.1163
## 2795 3706.39535 1090.1163
## 2796 3706.39535 1090.1163
## 2797 3706.39535 1090.1163
## 2798 3706.39535 1090.1163
## 2799 3706.39535 1090.1163
## 2800 3706.39535 1090.1163
## 2801 3706.39535 1090.1163
## 2802 3706.39535 1090.1163
## 2803 3706.39535 1090.1163
## 2804 3706.39535 1090.1163
## 2805 3706.39535 1090.1163
## 2806 3706.39535 1090.1163
## 2807 3706.39535 1090.1163
## 2808 3706.39535 1090.1163
## 2809 1090.11628 1090.1163
## 2810 1090.11628 1090.1163
## 2811 1090.11628 1090.1163
## 2812 1090.11628 1090.1163
## 2813 1090.11628 1090.1163
## 2814 1090.11628 1090.1163
## 2815 1090.11628 1090.1163
## 2816 1090.11628 1090.1163
## 2817 1090.11628 1090.1163
## 2818 1090.11628 1090.1163
## 2819 1090.11628 1090.1163
## 2820 1090.11628 1090.1163
## 2821 1090.11628 1090.1163
## 2822 1090.11628 1090.1163
## 2823 1090.11628 1090.1163
## 2824 1090.11628 1090.1163
## 2825 1090.11628 1090.1163
## 2826 1090.11628 1090.1163
## 2827 1090.11628 1090.1163
## 2828 1090.11628 1090.1163
## 2829 1090.11628 1090.1163
## 2830 1090.11628 1090.1163
## 2831 1090.11628 1090.1163
## 2832 1090.11628 1090.1163
## 2833 1090.11628 3235.4651
## 2834 1090.11628 3235.4651
## 2835 1090.11628 3235.4651
## 2836 1090.11628 3235.4651
## 2837 1090.11628 3235.4651
## 2838 1090.11628 3235.4651
## 2839 1090.11628 3235.4651
## 2840 1090.11628 3235.4651
## 2841 1090.11628 3235.4651
## 2842 1090.11628 3235.4651
## 2843 1090.11628 3235.4651
## 2844 1090.11628 3235.4651
## 2845 1090.11628 3235.4651
## 2846 1090.11628 3235.4651
## 2847 1090.11628 3235.4651
## 2848 1090.11628 3235.4651
## 2849 1090.11628 3235.4651
## 2850 1090.11628 3235.4651
## 2851 1090.11628 3235.4651
## 2852 1090.11628 3235.4651
## 2853 1090.11628 3235.4651
## 2854 1090.11628 3235.4651
## 2855 1090.11628 3235.4651
## 2856 1090.11628 3235.4651
## 2857 0.00000 1077.0349
## 2858 0.00000 1077.0349
## 2859 0.00000 1077.0349
## 2860 0.00000 1077.0349
## 2861 0.00000 1077.0349
## 2862 0.00000 1077.0349
## 2863 0.00000 1077.0349
## 2864 0.00000 1077.0349
## 2865 0.00000 1077.0349
## 2866 0.00000 1077.0349
## 2867 0.00000 1077.0349
## 2868 0.00000 1077.0349
## 2869 0.00000 1077.0349
## 2870 0.00000 1077.0349
## 2871 0.00000 1077.0349
## 2872 0.00000 1077.0349
## 2873 0.00000 1077.0349
## 2874 0.00000 1077.0349
## 2875 0.00000 1077.0349
## 2876 0.00000 1077.0349
## 2877 0.00000 1077.0349
## 2878 0.00000 1077.0349
## 2879 0.00000 1077.0349
## 2880 0.00000 1077.0349
## 2881 635.75581 981.9767
## 2882 635.75581 981.9767
## 2883 635.75581 981.9767
## 2884 635.75581 981.9767
## 2885 635.75581 981.9767
## 2886 635.75581 981.9767
## 2887 635.75581 981.9767
## 2888 635.75581 981.9767
## 2889 635.75581 981.9767
## 2890 635.75581 981.9767
## 2891 635.75581 981.9767
## 2892 635.75581 981.9767
## 2893 635.75581 981.9767
## 2894 635.75581 981.9767
## 2895 635.75581 981.9767
## 2896 635.75581 981.9767
## 2897 635.75581 981.9767
## 2898 635.75581 981.9767
## 2899 635.75581 981.9767
## 2900 635.75581 981.9767
## 2901 635.75581 981.9767
## 2902 635.75581 981.9767
## 2903 635.75581 981.9767
## 2904 635.75581 981.9767
## 2905 1055.23256 1508.7209
## 2906 1055.23256 1508.7209
## 2907 1055.23256 1508.7209
## 2908 1055.23256 1508.7209
## 2909 1055.23256 1508.7209
## 2910 1055.23256 1508.7209
## 2911 1055.23256 1508.7209
## 2912 1055.23256 1508.7209
## 2913 1055.23256 1508.7209
## 2914 1055.23256 1508.7209
## 2915 1055.23256 1508.7209
## 2916 1055.23256 1508.7209
## 2917 1055.23256 1508.7209
## 2918 1055.23256 1508.7209
## 2919 1055.23256 1508.7209
## 2920 1055.23256 1508.7209
## 2921 1055.23256 1508.7209
## 2922 1055.23256 1508.7209
## 2923 1055.23256 1508.7209
## 2924 1055.23256 1508.7209
## 2925 1055.23256 1508.7209
## 2926 1055.23256 1508.7209
## 2927 1055.23256 1508.7209
## 2928 1055.23256 1508.7209
## 2929 1090.11628 1308.1395
## 2930 1090.11628 1308.1395
## 2931 1090.11628 1308.1395
## 2932 1090.11628 1308.1395
## 2933 1090.11628 1308.1395
## 2934 1090.11628 1308.1395
## 2935 1090.11628 1308.1395
## 2936 1090.11628 1308.1395
## 2937 1090.11628 1308.1395
## 2938 1090.11628 1308.1395
## 2939 1090.11628 1308.1395
## 2940 1090.11628 1308.1395
## 2941 1090.11628 1308.1395
## 2942 1090.11628 1308.1395
## 2943 1090.11628 1308.1395
## 2944 1090.11628 1308.1395
## 2945 1090.11628 1308.1395
## 2946 1090.11628 1308.1395
## 2947 1090.11628 1308.1395
## 2948 1090.11628 1308.1395
## 2949 1090.11628 1308.1395
## 2950 1090.11628 1308.1395
## 2951 1090.11628 1308.1395
## 2952 1090.11628 1308.1395
## 2953 2180.23256 2947.6744
## 2954 2180.23256 2947.6744
## 2955 2180.23256 2947.6744
## 2956 2180.23256 2947.6744
## 2957 2180.23256 2947.6744
## 2958 2180.23256 2947.6744
## 2959 2180.23256 2947.6744
## 2960 2180.23256 2947.6744
## 2961 2180.23256 2947.6744
## 2962 2180.23256 2947.6744
## 2963 2180.23256 2947.6744
## 2964 2180.23256 2947.6744
## 2965 2180.23256 2947.6744
## 2966 2180.23256 2947.6744
## 2967 2180.23256 2947.6744
## 2968 2180.23256 2947.6744
## 2969 2180.23256 2947.6744
## 2970 2180.23256 2947.6744
## 2971 2180.23256 2947.6744
## 2972 2180.23256 2947.6744
## 2973 2180.23256 2947.6744
## 2974 2180.23256 2947.6744
## 2975 2180.23256 2947.6744
## 2976 2180.23256 2947.6744
## 2977 549.41860 1090.1163
## 2978 549.41860 1090.1163
## 2979 549.41860 1090.1163
## 2980 549.41860 1090.1163
## 2981 549.41860 1090.1163
## 2982 549.41860 1090.1163
## 2983 549.41860 1090.1163
## 2984 549.41860 1090.1163
## 2985 549.41860 1090.1163
## 2986 549.41860 1090.1163
## 2987 549.41860 1090.1163
## 2988 549.41860 1090.1163
## 2989 549.41860 1090.1163
## 2990 549.41860 1090.1163
## 2991 549.41860 1090.1163
## 2992 549.41860 1090.1163
## 2993 549.41860 1090.1163
## 2994 549.41860 1090.1163
## 2995 549.41860 1090.1163
## 2996 549.41860 1090.1163
## 2997 549.41860 1090.1163
## 2998 549.41860 1090.1163
## 2999 549.41860 1090.1163
## 3000 549.41860 1090.1163
## 3001 0.00000 767.4419
## 3002 0.00000 767.4419
## 3003 0.00000 767.4419
## 3004 0.00000 767.4419
## 3005 0.00000 767.4419
## 3006 0.00000 767.4419
## 3007 0.00000 767.4419
## 3008 0.00000 767.4419
## 3009 0.00000 767.4419
## 3010 0.00000 767.4419
## 3011 0.00000 767.4419
## 3012 0.00000 767.4419
## 3013 0.00000 767.4419
## 3014 0.00000 767.4419
## 3015 0.00000 767.4419
## 3016 0.00000 767.4419
## 3017 0.00000 767.4419
## 3018 0.00000 767.4419
## 3019 0.00000 767.4419
## 3020 0.00000 767.4419
## 3021 0.00000 767.4419
## 3022 0.00000 767.4419
## 3023 0.00000 767.4419
## 3024 0.00000 767.4419
## 3025 0.00000 1351.7442
## 3026 0.00000 1351.7442
## 3027 0.00000 1351.7442
## 3028 0.00000 1351.7442
## 3029 0.00000 1351.7442
## 3030 0.00000 1351.7442
## 3031 0.00000 1351.7442
## 3032 0.00000 1351.7442
## 3033 0.00000 1351.7442
## 3034 0.00000 1351.7442
## 3035 0.00000 1351.7442
## 3036 0.00000 1351.7442
## 3037 0.00000 1351.7442
## 3038 0.00000 1351.7442
## 3039 0.00000 1351.7442
## 3040 0.00000 1351.7442
## 3041 0.00000 1351.7442
## 3042 0.00000 1351.7442
## 3043 0.00000 1351.7442
## 3044 0.00000 1351.7442
## 3045 0.00000 1351.7442
## 3046 0.00000 1351.7442
## 3047 0.00000 1351.7442
## 3048 0.00000 1351.7442
## 3049 126.45349 187.5000
## 3050 126.45349 187.5000
## 3051 126.45349 187.5000
## 3052 126.45349 187.5000
## 3053 126.45349 187.5000
## 3054 126.45349 187.5000
## 3055 126.45349 187.5000
## 3056 126.45349 187.5000
## 3057 126.45349 187.5000
## 3058 126.45349 187.5000
## 3059 126.45349 187.5000
## 3060 126.45349 187.5000
## 3061 126.45349 187.5000
## 3062 126.45349 187.5000
## 3063 126.45349 187.5000
## 3064 126.45349 187.5000
## 3065 126.45349 187.5000
## 3066 126.45349 187.5000
## 3067 126.45349 187.5000
## 3068 126.45349 187.5000
## 3069 126.45349 187.5000
## 3070 126.45349 187.5000
## 3071 126.45349 187.5000
## 3072 126.45349 187.5000
## 3073 635.75581 981.9767
## 3074 635.75581 981.9767
## 3075 635.75581 981.9767
## 3076 635.75581 981.9767
## 3077 635.75581 981.9767
## 3078 635.75581 981.9767
## 3079 635.75581 981.9767
## 3080 635.75581 981.9767
## 3081 635.75581 981.9767
## 3082 635.75581 981.9767
## 3083 635.75581 981.9767
## 3084 635.75581 981.9767
## 3085 635.75581 981.9767
## 3086 635.75581 981.9767
## 3087 635.75581 981.9767
## 3088 635.75581 981.9767
## 3089 635.75581 981.9767
## 3090 635.75581 981.9767
## 3091 635.75581 981.9767
## 3092 635.75581 981.9767
## 3093 635.75581 981.9767
## 3094 635.75581 981.9767
## 3095 635.75581 981.9767
## 3096 635.75581 981.9767
## 3097 1029.06977 418.6047
## 3098 1029.06977 418.6047
## 3099 1029.06977 418.6047
## 3100 1029.06977 418.6047
## 3101 1029.06977 418.6047
## 3102 1029.06977 418.6047
## 3103 1029.06977 418.6047
## 3104 1029.06977 418.6047
## 3105 1029.06977 418.6047
## 3106 1029.06977 418.6047
## 3107 1029.06977 418.6047
## 3108 1029.06977 418.6047
## 3109 1029.06977 418.6047
## 3110 1029.06977 418.6047
## 3111 1029.06977 418.6047
## 3112 1029.06977 418.6047
## 3113 1029.06977 418.6047
## 3114 1029.06977 418.6047
## 3115 1029.06977 418.6047
## 3116 1029.06977 418.6047
## 3117 1029.06977 418.6047
## 3118 1029.06977 418.6047
## 3119 1029.06977 418.6047
## 3120 1029.06977 418.6047
## 3121 0.00000 1220.9302
## 3122 0.00000 1220.9302
## 3123 0.00000 1220.9302
## 3124 0.00000 1220.9302
## 3125 0.00000 1220.9302
## 3126 0.00000 1220.9302
## 3127 0.00000 1220.9302
## 3128 0.00000 1220.9302
## 3129 0.00000 1220.9302
## 3130 0.00000 1220.9302
## 3131 0.00000 1220.9302
## 3132 0.00000 1220.9302
## 3133 0.00000 1220.9302
## 3134 0.00000 1220.9302
## 3135 0.00000 1220.9302
## 3136 0.00000 1220.9302
## 3137 0.00000 1220.9302
## 3138 0.00000 1220.9302
## 3139 0.00000 1220.9302
## 3140 0.00000 1220.9302
## 3141 0.00000 1220.9302
## 3142 0.00000 1220.9302
## 3143 0.00000 1220.9302
## 3144 0.00000 1220.9302
## 3145 2188.95349 3122.0930
## 3146 2188.95349 3122.0930
## 3147 2188.95349 3122.0930
## 3148 2188.95349 3122.0930
## 3149 2188.95349 3122.0930
## 3150 2188.95349 3122.0930
## 3151 2188.95349 3122.0930
## 3152 2188.95349 3122.0930
## 3153 2188.95349 3122.0930
## 3154 2188.95349 3122.0930
## 3155 2188.95349 3122.0930
## 3156 2188.95349 3122.0930
## 3157 2188.95349 3122.0930
## 3158 2188.95349 3122.0930
## 3159 2188.95349 3122.0930
## 3160 2188.95349 3122.0930
## 3161 2188.95349 3122.0930
## 3162 2188.95349 3122.0930
## 3163 2188.95349 3122.0930
## 3164 2188.95349 3122.0930
## 3165 2188.95349 3122.0930
## 3166 2188.95349 3122.0930
## 3167 2188.95349 3122.0930
## 3168 2188.95349 3122.0930
## 3169 3654.06977 0.0000
## 3170 3654.06977 0.0000
## 3171 3654.06977 0.0000
## 3172 3654.06977 0.0000
## 3173 3654.06977 0.0000
## 3174 3654.06977 0.0000
## 3175 3654.06977 0.0000
## 3176 3654.06977 0.0000
## 3177 3654.06977 0.0000
## 3178 3654.06977 0.0000
## 3179 3654.06977 0.0000
## 3180 3654.06977 0.0000
## 3181 3654.06977 0.0000
## 3182 3654.06977 0.0000
## 3183 3654.06977 0.0000
## 3184 3654.06977 0.0000
## 3185 3654.06977 0.0000
## 3186 3654.06977 0.0000
## 3187 3654.06977 0.0000
## 3188 3654.06977 0.0000
## 3189 3654.06977 0.0000
## 3190 3654.06977 0.0000
## 3191 3654.06977 0.0000
## 3192 3654.06977 0.0000
## 3193 287.79070 3270.3488
## 3194 287.79070 3270.3488
## 3195 287.79070 3270.3488
## 3196 287.79070 3270.3488
## 3197 287.79070 3270.3488
## 3198 287.79070 3270.3488
## 3199 287.79070 3270.3488
## 3200 287.79070 3270.3488
## 3201 287.79070 3270.3488
## 3202 287.79070 3270.3488
## 3203 287.79070 3270.3488
## 3204 287.79070 3270.3488
## 3205 287.79070 3270.3488
## 3206 287.79070 3270.3488
## 3207 287.79070 3270.3488
## 3208 287.79070 3270.3488
## 3209 287.79070 3270.3488
## 3210 287.79070 3270.3488
## 3211 287.79070 3270.3488
## 3212 287.79070 3270.3488
## 3213 287.79070 3270.3488
## 3214 287.79070 3270.3488
## 3215 287.79070 3270.3488
## 3216 287.79070 3270.3488
## 3217 0.00000 109.0116
## 3218 0.00000 109.0116
## 3219 0.00000 109.0116
## 3220 0.00000 109.0116
## 3221 0.00000 109.0116
## 3222 0.00000 109.0116
## 3223 0.00000 109.0116
## 3224 0.00000 109.0116
## 3225 0.00000 109.0116
## total_metaecosystem_Tet_indiv connection patch_size_symmetry set
## 1 2243.895 unconnected asymmetric 1
## 2 2243.895 unconnected asymmetric 2
## 3 2243.895 unconnected asymmetric 3
## 4 2243.895 unconnected asymmetric 4
## 5 2243.895 unconnected asymmetric 7
## 6 2243.895 unconnected asymmetric 8
## 7 2243.895 unconnected asymmetric 9
## 8 2243.895 unconnected asymmetric 10
## 9 2243.895 unconnected asymmetric 11
## 10 2243.895 unconnected asymmetric 12
## 11 2243.895 unconnected asymmetric 13
## 12 2243.895 unconnected asymmetric 14
## 13 2243.895 unconnected asymmetric 27
## 14 2243.895 unconnected asymmetric 28
## 15 2243.895 unconnected asymmetric 29
## 16 2243.895 unconnected asymmetric 30
## 17 2243.895 unconnected asymmetric 31
## 18 2243.895 unconnected asymmetric 32
## 19 2243.895 unconnected asymmetric 33
## 20 2243.895 unconnected asymmetric 34
## 21 2243.895 unconnected asymmetric 37
## 22 2243.895 unconnected asymmetric 38
## 23 2243.895 unconnected asymmetric 39
## 24 2243.895 unconnected asymmetric 40
## 25 0.000 unconnected asymmetric 1
## 26 0.000 unconnected asymmetric 2
## 27 0.000 unconnected asymmetric 3
## 28 0.000 unconnected asymmetric 4
## 29 0.000 unconnected asymmetric 7
## 30 0.000 unconnected asymmetric 8
## 31 0.000 unconnected asymmetric 9
## 32 0.000 unconnected asymmetric 10
## 33 0.000 unconnected asymmetric 11
## 34 0.000 unconnected asymmetric 12
## 35 0.000 unconnected asymmetric 13
## 36 0.000 unconnected asymmetric 14
## 37 0.000 unconnected asymmetric 27
## 38 0.000 unconnected asymmetric 28
## 39 0.000 unconnected asymmetric 29
## 40 0.000 unconnected asymmetric 30
## 41 0.000 unconnected asymmetric 31
## 42 0.000 unconnected asymmetric 32
## 43 0.000 unconnected asymmetric 33
## 44 0.000 unconnected asymmetric 34
## 45 0.000 unconnected asymmetric 37
## 46 0.000 unconnected asymmetric 38
## 47 0.000 unconnected asymmetric 39
## 48 0.000 unconnected asymmetric 40
## 49 0.000 unconnected asymmetric 1
## 50 0.000 unconnected asymmetric 2
## 51 0.000 unconnected asymmetric 3
## 52 0.000 unconnected asymmetric 4
## 53 0.000 unconnected asymmetric 7
## 54 0.000 unconnected asymmetric 8
## 55 0.000 unconnected asymmetric 9
## 56 0.000 unconnected asymmetric 10
## 57 0.000 unconnected asymmetric 11
## 58 0.000 unconnected asymmetric 12
## 59 0.000 unconnected asymmetric 13
## 60 0.000 unconnected asymmetric 14
## 61 0.000 unconnected asymmetric 27
## 62 0.000 unconnected asymmetric 28
## 63 0.000 unconnected asymmetric 29
## 64 0.000 unconnected asymmetric 30
## 65 0.000 unconnected asymmetric 31
## 66 0.000 unconnected asymmetric 32
## 67 0.000 unconnected asymmetric 33
## 68 0.000 unconnected asymmetric 34
## 69 0.000 unconnected asymmetric 37
## 70 0.000 unconnected asymmetric 38
## 71 0.000 unconnected asymmetric 39
## 72 0.000 unconnected asymmetric 40
## 73 0.000 unconnected asymmetric 1
## 74 0.000 unconnected asymmetric 2
## 75 0.000 unconnected asymmetric 3
## 76 0.000 unconnected asymmetric 4
## 77 0.000 unconnected asymmetric 7
## 78 0.000 unconnected asymmetric 8
## 79 0.000 unconnected asymmetric 9
## 80 0.000 unconnected asymmetric 10
## 81 0.000 unconnected asymmetric 11
## 82 0.000 unconnected asymmetric 12
## 83 0.000 unconnected asymmetric 13
## 84 0.000 unconnected asymmetric 14
## 85 0.000 unconnected asymmetric 27
## 86 0.000 unconnected asymmetric 28
## 87 0.000 unconnected asymmetric 29
## 88 0.000 unconnected asymmetric 30
## 89 0.000 unconnected asymmetric 31
## 90 0.000 unconnected asymmetric 32
## 91 0.000 unconnected asymmetric 33
## 92 0.000 unconnected asymmetric 34
## 93 0.000 unconnected asymmetric 37
## 94 0.000 unconnected asymmetric 38
## 95 0.000 unconnected asymmetric 39
## 96 0.000 unconnected asymmetric 40
## 97 0.000 unconnected asymmetric 1
## 98 0.000 unconnected asymmetric 2
## 99 0.000 unconnected asymmetric 3
## 100 0.000 unconnected asymmetric 4
## 101 0.000 unconnected asymmetric 7
## 102 0.000 unconnected asymmetric 8
## 103 0.000 unconnected asymmetric 9
## 104 0.000 unconnected asymmetric 10
## 105 0.000 unconnected asymmetric 11
## 106 0.000 unconnected asymmetric 12
## 107 0.000 unconnected asymmetric 13
## 108 0.000 unconnected asymmetric 14
## 109 0.000 unconnected asymmetric 27
## 110 0.000 unconnected asymmetric 28
## 111 0.000 unconnected asymmetric 29
## 112 0.000 unconnected asymmetric 30
## 113 0.000 unconnected asymmetric 31
## 114 0.000 unconnected asymmetric 32
## 115 0.000 unconnected asymmetric 33
## 116 0.000 unconnected asymmetric 34
## 117 0.000 unconnected asymmetric 37
## 118 0.000 unconnected asymmetric 38
## 119 0.000 unconnected asymmetric 39
## 120 0.000 unconnected asymmetric 40
## 121 0.000 unconnected asymmetric 1
## 122 0.000 unconnected asymmetric 2
## 123 0.000 unconnected asymmetric 3
## 124 0.000 unconnected asymmetric 4
## 125 0.000 unconnected asymmetric 7
## 126 0.000 unconnected asymmetric 8
## 127 0.000 unconnected asymmetric 9
## 128 0.000 unconnected asymmetric 10
## 129 0.000 unconnected asymmetric 11
## 130 0.000 unconnected asymmetric 12
## 131 0.000 unconnected asymmetric 13
## 132 0.000 unconnected asymmetric 14
## 133 0.000 unconnected asymmetric 27
## 134 0.000 unconnected asymmetric 28
## 135 0.000 unconnected asymmetric 29
## 136 0.000 unconnected asymmetric 30
## 137 0.000 unconnected asymmetric 31
## 138 0.000 unconnected asymmetric 32
## 139 0.000 unconnected asymmetric 33
## 140 0.000 unconnected asymmetric 34
## 141 0.000 unconnected asymmetric 37
## 142 0.000 unconnected asymmetric 38
## 143 0.000 unconnected asymmetric 39
## 144 0.000 unconnected asymmetric 40
## 145 0.000 unconnected asymmetric 1
## 146 0.000 unconnected asymmetric 2
## 147 0.000 unconnected asymmetric 3
## 148 0.000 unconnected asymmetric 4
## 149 0.000 unconnected asymmetric 7
## 150 0.000 unconnected asymmetric 8
## 151 0.000 unconnected asymmetric 9
## 152 0.000 unconnected asymmetric 10
## 153 0.000 unconnected asymmetric 11
## 154 0.000 unconnected asymmetric 12
## 155 0.000 unconnected asymmetric 13
## 156 0.000 unconnected asymmetric 14
## 157 0.000 unconnected asymmetric 27
## 158 0.000 unconnected asymmetric 28
## 159 0.000 unconnected asymmetric 29
## 160 0.000 unconnected asymmetric 30
## 161 0.000 unconnected asymmetric 31
## 162 0.000 unconnected asymmetric 32
## 163 0.000 unconnected asymmetric 33
## 164 0.000 unconnected asymmetric 34
## 165 0.000 unconnected asymmetric 37
## 166 0.000 unconnected asymmetric 38
## 167 0.000 unconnected asymmetric 39
## 168 0.000 unconnected asymmetric 40
## 169 0.000 unconnected asymmetric 1
## 170 0.000 unconnected asymmetric 2
## 171 0.000 unconnected asymmetric 3
## 172 0.000 unconnected asymmetric 4
## 173 0.000 unconnected asymmetric 7
## 174 0.000 unconnected asymmetric 8
## 175 0.000 unconnected asymmetric 9
## 176 0.000 unconnected asymmetric 10
## 177 0.000 unconnected asymmetric 11
## 178 0.000 unconnected asymmetric 12
## 179 0.000 unconnected asymmetric 13
## 180 0.000 unconnected asymmetric 14
## 181 0.000 unconnected asymmetric 27
## 182 0.000 unconnected asymmetric 28
## 183 0.000 unconnected asymmetric 29
## 184 0.000 unconnected asymmetric 30
## 185 0.000 unconnected asymmetric 31
## 186 0.000 unconnected asymmetric 32
## 187 0.000 unconnected asymmetric 33
## 188 0.000 unconnected asymmetric 34
## 189 0.000 unconnected asymmetric 37
## 190 0.000 unconnected asymmetric 38
## 191 0.000 unconnected asymmetric 39
## 192 0.000 unconnected asymmetric 40
## 193 2243.895 unconnected asymmetric 81
## 194 2243.895 unconnected asymmetric 82
## 195 2243.895 unconnected asymmetric 83
## 196 2243.895 unconnected asymmetric 84
## 197 2243.895 unconnected asymmetric 87
## 198 2243.895 unconnected asymmetric 88
## 199 2243.895 unconnected asymmetric 89
## 200 2243.895 unconnected asymmetric 90
## 201 2243.895 unconnected asymmetric 91
## 202 2243.895 unconnected asymmetric 92
## 203 2243.895 unconnected asymmetric 93
## 204 2243.895 unconnected asymmetric 94
## 205 2243.895 unconnected asymmetric 107
## 206 2243.895 unconnected asymmetric 108
## 207 2243.895 unconnected asymmetric 109
## 208 2243.895 unconnected asymmetric 110
## 209 2243.895 unconnected asymmetric 111
## 210 2243.895 unconnected asymmetric 112
## 211 2243.895 unconnected asymmetric 113
## 212 2243.895 unconnected asymmetric 114
## 213 2243.895 unconnected asymmetric 117
## 214 2243.895 unconnected asymmetric 118
## 215 2243.895 unconnected asymmetric 119
## 216 2243.895 unconnected asymmetric 120
## 217 0.000 unconnected asymmetric 81
## 218 0.000 unconnected asymmetric 82
## 219 0.000 unconnected asymmetric 83
## 220 0.000 unconnected asymmetric 84
## 221 0.000 unconnected asymmetric 87
## 222 0.000 unconnected asymmetric 88
## 223 0.000 unconnected asymmetric 89
## 224 0.000 unconnected asymmetric 90
## 225 0.000 unconnected asymmetric 91
## 226 0.000 unconnected asymmetric 92
## 227 0.000 unconnected asymmetric 93
## 228 0.000 unconnected asymmetric 94
## 229 0.000 unconnected asymmetric 107
## 230 0.000 unconnected asymmetric 108
## 231 0.000 unconnected asymmetric 109
## 232 0.000 unconnected asymmetric 110
## 233 0.000 unconnected asymmetric 111
## 234 0.000 unconnected asymmetric 112
## 235 0.000 unconnected asymmetric 113
## 236 0.000 unconnected asymmetric 114
## 237 0.000 unconnected asymmetric 117
## 238 0.000 unconnected asymmetric 118
## 239 0.000 unconnected asymmetric 119
## 240 0.000 unconnected asymmetric 120
## 241 0.000 unconnected asymmetric 81
## 242 0.000 unconnected asymmetric 82
## 243 0.000 unconnected asymmetric 83
## 244 0.000 unconnected asymmetric 84
## 245 0.000 unconnected asymmetric 87
## 246 0.000 unconnected asymmetric 88
## 247 0.000 unconnected asymmetric 89
## 248 0.000 unconnected asymmetric 90
## 249 0.000 unconnected asymmetric 91
## 250 0.000 unconnected asymmetric 92
## 251 0.000 unconnected asymmetric 93
## 252 0.000 unconnected asymmetric 94
## 253 0.000 unconnected asymmetric 107
## 254 0.000 unconnected asymmetric 108
## 255 0.000 unconnected asymmetric 109
## 256 0.000 unconnected asymmetric 110
## 257 0.000 unconnected asymmetric 111
## 258 0.000 unconnected asymmetric 112
## 259 0.000 unconnected asymmetric 113
## 260 0.000 unconnected asymmetric 114
## 261 0.000 unconnected asymmetric 117
## 262 0.000 unconnected asymmetric 118
## 263 0.000 unconnected asymmetric 119
## 264 0.000 unconnected asymmetric 120
## 265 0.000 unconnected asymmetric 81
## 266 0.000 unconnected asymmetric 82
## 267 0.000 unconnected asymmetric 83
## 268 0.000 unconnected asymmetric 84
## 269 0.000 unconnected asymmetric 87
## 270 0.000 unconnected asymmetric 88
## 271 0.000 unconnected asymmetric 89
## 272 0.000 unconnected asymmetric 90
## 273 0.000 unconnected asymmetric 91
## 274 0.000 unconnected asymmetric 92
## 275 0.000 unconnected asymmetric 93
## 276 0.000 unconnected asymmetric 94
## 277 0.000 unconnected asymmetric 107
## 278 0.000 unconnected asymmetric 108
## 279 0.000 unconnected asymmetric 109
## 280 0.000 unconnected asymmetric 110
## 281 0.000 unconnected asymmetric 111
## 282 0.000 unconnected asymmetric 112
## 283 0.000 unconnected asymmetric 113
## 284 0.000 unconnected asymmetric 114
## 285 0.000 unconnected asymmetric 117
## 286 0.000 unconnected asymmetric 118
## 287 0.000 unconnected asymmetric 119
## 288 0.000 unconnected asymmetric 120
## 289 0.000 unconnected asymmetric 81
## 290 0.000 unconnected asymmetric 82
## 291 0.000 unconnected asymmetric 83
## 292 0.000 unconnected asymmetric 84
## 293 0.000 unconnected asymmetric 87
## 294 0.000 unconnected asymmetric 88
## 295 0.000 unconnected asymmetric 89
## 296 0.000 unconnected asymmetric 90
## 297 0.000 unconnected asymmetric 91
## 298 0.000 unconnected asymmetric 92
## 299 0.000 unconnected asymmetric 93
## 300 0.000 unconnected asymmetric 94
## 301 0.000 unconnected asymmetric 107
## 302 0.000 unconnected asymmetric 108
## 303 0.000 unconnected asymmetric 109
## 304 0.000 unconnected asymmetric 110
## 305 0.000 unconnected asymmetric 111
## 306 0.000 unconnected asymmetric 112
## 307 0.000 unconnected asymmetric 113
## 308 0.000 unconnected asymmetric 114
## 309 0.000 unconnected asymmetric 117
## 310 0.000 unconnected asymmetric 118
## 311 0.000 unconnected asymmetric 119
## 312 0.000 unconnected asymmetric 120
## 313 0.000 unconnected asymmetric 81
## 314 0.000 unconnected asymmetric 82
## 315 0.000 unconnected asymmetric 83
## 316 0.000 unconnected asymmetric 84
## 317 0.000 unconnected asymmetric 87
## 318 0.000 unconnected asymmetric 88
## 319 0.000 unconnected asymmetric 89
## 320 0.000 unconnected asymmetric 90
## 321 0.000 unconnected asymmetric 91
## 322 0.000 unconnected asymmetric 92
## 323 0.000 unconnected asymmetric 93
## 324 0.000 unconnected asymmetric 94
## 325 0.000 unconnected asymmetric 107
## 326 0.000 unconnected asymmetric 108
## 327 0.000 unconnected asymmetric 109
## 328 0.000 unconnected asymmetric 110
## 329 0.000 unconnected asymmetric 111
## 330 0.000 unconnected asymmetric 112
## 331 0.000 unconnected asymmetric 113
## 332 0.000 unconnected asymmetric 114
## 333 0.000 unconnected asymmetric 117
## 334 0.000 unconnected asymmetric 118
## 335 0.000 unconnected asymmetric 119
## 336 0.000 unconnected asymmetric 120
## 337 0.000 unconnected asymmetric 81
## 338 0.000 unconnected asymmetric 82
## 339 0.000 unconnected asymmetric 83
## 340 0.000 unconnected asymmetric 84
## 341 0.000 unconnected asymmetric 87
## 342 0.000 unconnected asymmetric 88
## 343 0.000 unconnected asymmetric 89
## 344 0.000 unconnected asymmetric 90
## 345 0.000 unconnected asymmetric 91
## 346 0.000 unconnected asymmetric 92
## 347 0.000 unconnected asymmetric 93
## 348 0.000 unconnected asymmetric 94
## 349 0.000 unconnected asymmetric 107
## 350 0.000 unconnected asymmetric 108
## 351 0.000 unconnected asymmetric 109
## 352 0.000 unconnected asymmetric 110
## 353 0.000 unconnected asymmetric 111
## 354 0.000 unconnected asymmetric 112
## 355 0.000 unconnected asymmetric 113
## 356 0.000 unconnected asymmetric 114
## 357 0.000 unconnected asymmetric 117
## 358 0.000 unconnected asymmetric 118
## 359 0.000 unconnected asymmetric 119
## 360 0.000 unconnected asymmetric 120
## 361 0.000 unconnected asymmetric 81
## 362 0.000 unconnected asymmetric 82
## 363 0.000 unconnected asymmetric 83
## 364 0.000 unconnected asymmetric 84
## 365 0.000 unconnected asymmetric 87
## 366 0.000 unconnected asymmetric 88
## 367 0.000 unconnected asymmetric 89
## 368 0.000 unconnected asymmetric 90
## 369 0.000 unconnected asymmetric 91
## 370 0.000 unconnected asymmetric 92
## 371 0.000 unconnected asymmetric 93
## 372 0.000 unconnected asymmetric 94
## 373 0.000 unconnected asymmetric 107
## 374 0.000 unconnected asymmetric 108
## 375 0.000 unconnected asymmetric 109
## 376 0.000 unconnected asymmetric 110
## 377 0.000 unconnected asymmetric 111
## 378 0.000 unconnected asymmetric 112
## 379 0.000 unconnected asymmetric 113
## 380 0.000 unconnected asymmetric 114
## 381 0.000 unconnected asymmetric 117
## 382 0.000 unconnected asymmetric 118
## 383 0.000 unconnected asymmetric 119
## 384 0.000 unconnected asymmetric 120
## 385 2243.895 unconnected asymmetric 41
## 386 2243.895 unconnected asymmetric 42
## 387 2243.895 unconnected asymmetric 43
## 388 2243.895 unconnected asymmetric 44
## 389 2243.895 unconnected asymmetric 47
## 390 2243.895 unconnected asymmetric 48
## 391 2243.895 unconnected asymmetric 49
## 392 2243.895 unconnected asymmetric 50
## 393 2243.895 unconnected asymmetric 51
## 394 2243.895 unconnected asymmetric 52
## 395 2243.895 unconnected asymmetric 53
## 396 2243.895 unconnected asymmetric 54
## 397 2243.895 unconnected asymmetric 67
## 398 2243.895 unconnected asymmetric 68
## 399 2243.895 unconnected asymmetric 69
## 400 2243.895 unconnected asymmetric 70
## 401 2243.895 unconnected asymmetric 71
## 402 2243.895 unconnected asymmetric 72
## 403 2243.895 unconnected asymmetric 73
## 404 2243.895 unconnected asymmetric 74
## 405 2243.895 unconnected asymmetric 77
## 406 2243.895 unconnected asymmetric 78
## 407 2243.895 unconnected asymmetric 79
## 408 2243.895 unconnected asymmetric 80
## 409 0.000 unconnected asymmetric 41
## 410 0.000 unconnected asymmetric 42
## 411 0.000 unconnected asymmetric 43
## 412 0.000 unconnected asymmetric 44
## 413 0.000 unconnected asymmetric 47
## 414 0.000 unconnected asymmetric 48
## 415 0.000 unconnected asymmetric 49
## 416 0.000 unconnected asymmetric 50
## 417 0.000 unconnected asymmetric 51
## 418 0.000 unconnected asymmetric 52
## 419 0.000 unconnected asymmetric 53
## 420 0.000 unconnected asymmetric 54
## 421 0.000 unconnected asymmetric 67
## 422 0.000 unconnected asymmetric 68
## 423 0.000 unconnected asymmetric 69
## 424 0.000 unconnected asymmetric 70
## 425 0.000 unconnected asymmetric 71
## 426 0.000 unconnected asymmetric 72
## 427 0.000 unconnected asymmetric 73
## 428 0.000 unconnected asymmetric 74
## 429 0.000 unconnected asymmetric 77
## 430 0.000 unconnected asymmetric 78
## 431 0.000 unconnected asymmetric 79
## 432 0.000 unconnected asymmetric 80
## 433 0.000 unconnected asymmetric 41
## 434 0.000 unconnected asymmetric 42
## 435 0.000 unconnected asymmetric 43
## 436 0.000 unconnected asymmetric 44
## 437 0.000 unconnected asymmetric 47
## 438 0.000 unconnected asymmetric 48
## 439 0.000 unconnected asymmetric 49
## 440 0.000 unconnected asymmetric 50
## 441 0.000 unconnected asymmetric 51
## 442 0.000 unconnected asymmetric 52
## 443 0.000 unconnected asymmetric 53
## 444 0.000 unconnected asymmetric 54
## 445 0.000 unconnected asymmetric 67
## 446 0.000 unconnected asymmetric 68
## 447 0.000 unconnected asymmetric 69
## 448 0.000 unconnected asymmetric 70
## 449 0.000 unconnected asymmetric 71
## 450 0.000 unconnected asymmetric 72
## 451 0.000 unconnected asymmetric 73
## 452 0.000 unconnected asymmetric 74
## 453 0.000 unconnected asymmetric 77
## 454 0.000 unconnected asymmetric 78
## 455 0.000 unconnected asymmetric 79
## 456 0.000 unconnected asymmetric 80
## 457 0.000 unconnected asymmetric 41
## 458 0.000 unconnected asymmetric 42
## 459 0.000 unconnected asymmetric 43
## 460 0.000 unconnected asymmetric 44
## 461 0.000 unconnected asymmetric 47
## 462 0.000 unconnected asymmetric 48
## 463 0.000 unconnected asymmetric 49
## 464 0.000 unconnected asymmetric 50
## 465 0.000 unconnected asymmetric 51
## 466 0.000 unconnected asymmetric 52
## 467 0.000 unconnected asymmetric 53
## 468 0.000 unconnected asymmetric 54
## 469 0.000 unconnected asymmetric 67
## 470 0.000 unconnected asymmetric 68
## 471 0.000 unconnected asymmetric 69
## 472 0.000 unconnected asymmetric 70
## 473 0.000 unconnected asymmetric 71
## 474 0.000 unconnected asymmetric 72
## 475 0.000 unconnected asymmetric 73
## 476 0.000 unconnected asymmetric 74
## 477 0.000 unconnected asymmetric 77
## 478 0.000 unconnected asymmetric 78
## 479 0.000 unconnected asymmetric 79
## 480 0.000 unconnected asymmetric 80
## 481 0.000 unconnected asymmetric 41
## 482 0.000 unconnected asymmetric 42
## 483 0.000 unconnected asymmetric 43
## 484 0.000 unconnected asymmetric 44
## 485 0.000 unconnected asymmetric 47
## 486 0.000 unconnected asymmetric 48
## 487 0.000 unconnected asymmetric 49
## 488 0.000 unconnected asymmetric 50
## 489 0.000 unconnected asymmetric 51
## 490 0.000 unconnected asymmetric 52
## 491 0.000 unconnected asymmetric 53
## 492 0.000 unconnected asymmetric 54
## 493 0.000 unconnected asymmetric 67
## 494 0.000 unconnected asymmetric 68
## 495 0.000 unconnected asymmetric 69
## 496 0.000 unconnected asymmetric 70
## 497 0.000 unconnected asymmetric 71
## 498 0.000 unconnected asymmetric 72
## 499 0.000 unconnected asymmetric 73
## 500 0.000 unconnected asymmetric 74
## 501 0.000 unconnected asymmetric 77
## 502 0.000 unconnected asymmetric 78
## 503 0.000 unconnected asymmetric 79
## 504 0.000 unconnected asymmetric 80
## 505 0.000 unconnected asymmetric 41
## 506 0.000 unconnected asymmetric 42
## 507 0.000 unconnected asymmetric 43
## 508 0.000 unconnected asymmetric 44
## 509 0.000 unconnected asymmetric 47
## 510 0.000 unconnected asymmetric 48
## 511 0.000 unconnected asymmetric 49
## 512 0.000 unconnected asymmetric 50
## 513 0.000 unconnected asymmetric 51
## 514 0.000 unconnected asymmetric 52
## 515 0.000 unconnected asymmetric 53
## 516 0.000 unconnected asymmetric 54
## 517 0.000 unconnected asymmetric 67
## 518 0.000 unconnected asymmetric 68
## 519 0.000 unconnected asymmetric 69
## 520 0.000 unconnected asymmetric 70
## 521 0.000 unconnected asymmetric 71
## 522 0.000 unconnected asymmetric 72
## 523 0.000 unconnected asymmetric 73
## 524 0.000 unconnected asymmetric 74
## 525 0.000 unconnected asymmetric 77
## 526 0.000 unconnected asymmetric 78
## 527 0.000 unconnected asymmetric 79
## 528 0.000 unconnected asymmetric 80
## 529 0.000 unconnected asymmetric 41
## 530 0.000 unconnected asymmetric 42
## 531 0.000 unconnected asymmetric 43
## 532 0.000 unconnected asymmetric 44
## 533 0.000 unconnected asymmetric 47
## 534 0.000 unconnected asymmetric 48
## 535 0.000 unconnected asymmetric 49
## 536 0.000 unconnected asymmetric 50
## 537 0.000 unconnected asymmetric 51
## 538 0.000 unconnected asymmetric 52
## 539 0.000 unconnected asymmetric 53
## 540 0.000 unconnected asymmetric 54
## 541 0.000 unconnected asymmetric 67
## 542 0.000 unconnected asymmetric 68
## 543 0.000 unconnected asymmetric 69
## 544 0.000 unconnected asymmetric 70
## 545 0.000 unconnected asymmetric 71
## 546 0.000 unconnected asymmetric 72
## 547 0.000 unconnected asymmetric 73
## 548 0.000 unconnected asymmetric 74
## 549 0.000 unconnected asymmetric 77
## 550 0.000 unconnected asymmetric 78
## 551 0.000 unconnected asymmetric 79
## 552 0.000 unconnected asymmetric 80
## 553 0.000 unconnected asymmetric 41
## 554 0.000 unconnected asymmetric 42
## 555 0.000 unconnected asymmetric 43
## 556 0.000 unconnected asymmetric 44
## 557 0.000 unconnected asymmetric 47
## 558 0.000 unconnected asymmetric 48
## 559 0.000 unconnected asymmetric 49
## 560 0.000 unconnected asymmetric 50
## 561 0.000 unconnected asymmetric 51
## 562 0.000 unconnected asymmetric 52
## 563 0.000 unconnected asymmetric 53
## 564 0.000 unconnected asymmetric 54
## 565 0.000 unconnected asymmetric 67
## 566 0.000 unconnected asymmetric 68
## 567 0.000 unconnected asymmetric 69
## 568 0.000 unconnected asymmetric 70
## 569 0.000 unconnected asymmetric 71
## 570 0.000 unconnected asymmetric 72
## 571 0.000 unconnected asymmetric 73
## 572 0.000 unconnected asymmetric 74
## 573 0.000 unconnected asymmetric 77
## 574 0.000 unconnected asymmetric 78
## 575 0.000 unconnected asymmetric 79
## 576 0.000 unconnected asymmetric 80
## 577 2243.895 unconnected asymmetric 17
## 578 2243.895 unconnected asymmetric 18
## 579 2243.895 unconnected asymmetric 19
## 580 2243.895 unconnected asymmetric 20
## 581 2243.895 unconnected asymmetric 21
## 582 2243.895 unconnected asymmetric 22
## 583 2243.895 unconnected asymmetric 23
## 584 2243.895 unconnected asymmetric 24
## 585 2243.895 unconnected asymmetric 57
## 586 2243.895 unconnected asymmetric 58
## 587 2243.895 unconnected asymmetric 59
## 588 2243.895 unconnected asymmetric 60
## 589 2243.895 unconnected asymmetric 61
## 590 2243.895 unconnected asymmetric 62
## 591 2243.895 unconnected asymmetric 63
## 592 2243.895 unconnected asymmetric 64
## 593 2243.895 unconnected asymmetric 97
## 594 2243.895 unconnected asymmetric 98
## 595 2243.895 unconnected asymmetric 99
## 596 2243.895 unconnected asymmetric 100
## 597 2243.895 unconnected asymmetric 101
## 598 2243.895 unconnected asymmetric 102
## 599 2243.895 unconnected asymmetric 103
## 600 2243.895 unconnected asymmetric 104
## 601 0.000 unconnected asymmetric 17
## 602 0.000 unconnected asymmetric 18
## 603 0.000 unconnected asymmetric 19
## 604 0.000 unconnected asymmetric 20
## 605 0.000 unconnected asymmetric 21
## 606 0.000 unconnected asymmetric 22
## 607 0.000 unconnected asymmetric 23
## 608 0.000 unconnected asymmetric 24
## 609 0.000 unconnected asymmetric 57
## 610 0.000 unconnected asymmetric 58
## 611 0.000 unconnected asymmetric 59
## 612 0.000 unconnected asymmetric 60
## 613 0.000 unconnected asymmetric 61
## 614 0.000 unconnected asymmetric 62
## 615 0.000 unconnected asymmetric 63
## 616 0.000 unconnected asymmetric 64
## 617 0.000 unconnected asymmetric 97
## 618 0.000 unconnected asymmetric 98
## 619 0.000 unconnected asymmetric 99
## 620 0.000 unconnected asymmetric 100
## 621 0.000 unconnected asymmetric 101
## 622 0.000 unconnected asymmetric 102
## 623 0.000 unconnected asymmetric 103
## 624 0.000 unconnected asymmetric 104
## 625 0.000 unconnected asymmetric 17
## 626 0.000 unconnected asymmetric 18
## 627 0.000 unconnected asymmetric 19
## 628 0.000 unconnected asymmetric 20
## 629 0.000 unconnected asymmetric 21
## 630 0.000 unconnected asymmetric 22
## 631 0.000 unconnected asymmetric 23
## 632 0.000 unconnected asymmetric 24
## 633 0.000 unconnected asymmetric 57
## 634 0.000 unconnected asymmetric 58
## 635 0.000 unconnected asymmetric 59
## 636 0.000 unconnected asymmetric 60
## 637 0.000 unconnected asymmetric 61
## 638 0.000 unconnected asymmetric 62
## 639 0.000 unconnected asymmetric 63
## 640 0.000 unconnected asymmetric 64
## 641 0.000 unconnected asymmetric 97
## 642 0.000 unconnected asymmetric 98
## 643 0.000 unconnected asymmetric 99
## 644 0.000 unconnected asymmetric 100
## 645 0.000 unconnected asymmetric 101
## 646 0.000 unconnected asymmetric 102
## 647 0.000 unconnected asymmetric 103
## 648 0.000 unconnected asymmetric 104
## 649 0.000 unconnected asymmetric 17
## 650 0.000 unconnected asymmetric 18
## 651 0.000 unconnected asymmetric 19
## 652 0.000 unconnected asymmetric 20
## 653 0.000 unconnected asymmetric 21
## 654 0.000 unconnected asymmetric 22
## 655 0.000 unconnected asymmetric 23
## 656 0.000 unconnected asymmetric 24
## 657 0.000 unconnected asymmetric 57
## 658 0.000 unconnected asymmetric 58
## 659 0.000 unconnected asymmetric 59
## 660 0.000 unconnected asymmetric 60
## 661 0.000 unconnected asymmetric 61
## 662 0.000 unconnected asymmetric 62
## 663 0.000 unconnected asymmetric 63
## 664 0.000 unconnected asymmetric 64
## 665 0.000 unconnected asymmetric 97
## 666 0.000 unconnected asymmetric 98
## 667 0.000 unconnected asymmetric 99
## 668 0.000 unconnected asymmetric 100
## 669 0.000 unconnected asymmetric 101
## 670 0.000 unconnected asymmetric 102
## 671 0.000 unconnected asymmetric 103
## 672 0.000 unconnected asymmetric 104
## 673 0.000 unconnected asymmetric 17
## 674 0.000 unconnected asymmetric 18
## 675 0.000 unconnected asymmetric 19
## 676 0.000 unconnected asymmetric 20
## 677 0.000 unconnected asymmetric 21
## 678 0.000 unconnected asymmetric 22
## 679 0.000 unconnected asymmetric 23
## 680 0.000 unconnected asymmetric 24
## 681 0.000 unconnected asymmetric 57
## 682 0.000 unconnected asymmetric 58
## 683 0.000 unconnected asymmetric 59
## 684 0.000 unconnected asymmetric 60
## 685 0.000 unconnected asymmetric 61
## 686 0.000 unconnected asymmetric 62
## 687 0.000 unconnected asymmetric 63
## 688 0.000 unconnected asymmetric 64
## 689 0.000 unconnected asymmetric 97
## 690 0.000 unconnected asymmetric 98
## 691 0.000 unconnected asymmetric 99
## 692 0.000 unconnected asymmetric 100
## 693 0.000 unconnected asymmetric 101
## 694 0.000 unconnected asymmetric 102
## 695 0.000 unconnected asymmetric 103
## 696 0.000 unconnected asymmetric 104
## 697 0.000 unconnected asymmetric 17
## 698 0.000 unconnected asymmetric 18
## 699 0.000 unconnected asymmetric 19
## 700 0.000 unconnected asymmetric 20
## 701 0.000 unconnected asymmetric 21
## 702 0.000 unconnected asymmetric 22
## 703 0.000 unconnected asymmetric 23
## 704 0.000 unconnected asymmetric 24
## 705 0.000 unconnected asymmetric 57
## 706 0.000 unconnected asymmetric 58
## 707 0.000 unconnected asymmetric 59
## 708 0.000 unconnected asymmetric 60
## 709 0.000 unconnected asymmetric 61
## 710 0.000 unconnected asymmetric 62
## 711 0.000 unconnected asymmetric 63
## 712 0.000 unconnected asymmetric 64
## 713 0.000 unconnected asymmetric 97
## 714 0.000 unconnected asymmetric 98
## 715 0.000 unconnected asymmetric 99
## 716 0.000 unconnected asymmetric 100
## 717 0.000 unconnected asymmetric 101
## 718 0.000 unconnected asymmetric 102
## 719 0.000 unconnected asymmetric 103
## 720 0.000 unconnected asymmetric 104
## 721 0.000 unconnected asymmetric 17
## 722 0.000 unconnected asymmetric 18
## 723 0.000 unconnected asymmetric 19
## 724 0.000 unconnected asymmetric 20
## 725 0.000 unconnected asymmetric 21
## 726 0.000 unconnected asymmetric 22
## 727 0.000 unconnected asymmetric 23
## 728 0.000 unconnected asymmetric 24
## 729 0.000 unconnected asymmetric 57
## 730 0.000 unconnected asymmetric 58
## 731 0.000 unconnected asymmetric 59
## 732 0.000 unconnected asymmetric 60
## 733 0.000 unconnected asymmetric 61
## 734 0.000 unconnected asymmetric 62
## 735 0.000 unconnected asymmetric 63
## 736 0.000 unconnected asymmetric 64
## 737 0.000 unconnected asymmetric 97
## 738 0.000 unconnected asymmetric 98
## 739 0.000 unconnected asymmetric 99
## 740 0.000 unconnected asymmetric 100
## 741 0.000 unconnected asymmetric 101
## 742 0.000 unconnected asymmetric 102
## 743 0.000 unconnected asymmetric 103
## 744 0.000 unconnected asymmetric 104
## 745 0.000 unconnected asymmetric 17
## 746 0.000 unconnected asymmetric 18
## 747 0.000 unconnected asymmetric 19
## 748 0.000 unconnected asymmetric 20
## 749 0.000 unconnected asymmetric 21
## 750 0.000 unconnected asymmetric 22
## 751 0.000 unconnected asymmetric 23
## 752 0.000 unconnected asymmetric 24
## 753 0.000 unconnected asymmetric 57
## 754 0.000 unconnected asymmetric 58
## 755 0.000 unconnected asymmetric 59
## 756 0.000 unconnected asymmetric 60
## 757 0.000 unconnected asymmetric 61
## 758 0.000 unconnected asymmetric 62
## 759 0.000 unconnected asymmetric 63
## 760 0.000 unconnected asymmetric 64
## 761 0.000 unconnected asymmetric 97
## 762 0.000 unconnected asymmetric 98
## 763 0.000 unconnected asymmetric 99
## 764 0.000 unconnected asymmetric 100
## 765 0.000 unconnected asymmetric 101
## 766 0.000 unconnected asymmetric 102
## 767 0.000 unconnected asymmetric 103
## 768 0.000 unconnected asymmetric 104
## 769 2243.895 unconnected asymmetric 5
## 770 2243.895 unconnected asymmetric 6
## 771 2243.895 unconnected asymmetric 15
## 772 2243.895 unconnected asymmetric 16
## 773 2243.895 unconnected asymmetric 25
## 774 2243.895 unconnected asymmetric 26
## 775 2243.895 unconnected asymmetric 35
## 776 2243.895 unconnected asymmetric 36
## 777 2243.895 unconnected asymmetric 45
## 778 2243.895 unconnected asymmetric 46
## 779 2243.895 unconnected asymmetric 55
## 780 2243.895 unconnected asymmetric 56
## 781 2243.895 unconnected asymmetric 65
## 782 2243.895 unconnected asymmetric 66
## 783 2243.895 unconnected asymmetric 75
## 784 2243.895 unconnected asymmetric 76
## 785 2243.895 unconnected asymmetric 85
## 786 2243.895 unconnected asymmetric 86
## 787 2243.895 unconnected asymmetric 95
## 788 2243.895 unconnected asymmetric 96
## 789 2243.895 unconnected asymmetric 105
## 790 2243.895 unconnected asymmetric 106
## 791 2243.895 unconnected asymmetric 115
## 792 2243.895 unconnected asymmetric 116
## 793 0.000 unconnected asymmetric 5
## 794 0.000 unconnected asymmetric 6
## 795 0.000 unconnected asymmetric 15
## 796 0.000 unconnected asymmetric 16
## 797 0.000 unconnected asymmetric 25
## 798 0.000 unconnected asymmetric 26
## 799 0.000 unconnected asymmetric 35
## 800 0.000 unconnected asymmetric 36
## 801 0.000 unconnected asymmetric 45
## 802 0.000 unconnected asymmetric 46
## 803 0.000 unconnected asymmetric 55
## 804 0.000 unconnected asymmetric 56
## 805 0.000 unconnected asymmetric 65
## 806 0.000 unconnected asymmetric 66
## 807 0.000 unconnected asymmetric 75
## 808 0.000 unconnected asymmetric 76
## 809 0.000 unconnected asymmetric 85
## 810 0.000 unconnected asymmetric 86
## 811 0.000 unconnected asymmetric 95
## 812 0.000 unconnected asymmetric 96
## 813 0.000 unconnected asymmetric 105
## 814 0.000 unconnected asymmetric 106
## 815 0.000 unconnected asymmetric 115
## 816 0.000 unconnected asymmetric 116
## 817 0.000 unconnected asymmetric 5
## 818 0.000 unconnected asymmetric 6
## 819 0.000 unconnected asymmetric 15
## 820 0.000 unconnected asymmetric 16
## 821 0.000 unconnected asymmetric 25
## 822 0.000 unconnected asymmetric 26
## 823 0.000 unconnected asymmetric 35
## 824 0.000 unconnected asymmetric 36
## 825 0.000 unconnected asymmetric 45
## 826 0.000 unconnected asymmetric 46
## 827 0.000 unconnected asymmetric 55
## 828 0.000 unconnected asymmetric 56
## 829 0.000 unconnected asymmetric 65
## 830 0.000 unconnected asymmetric 66
## 831 0.000 unconnected asymmetric 75
## 832 0.000 unconnected asymmetric 76
## 833 0.000 unconnected asymmetric 85
## 834 0.000 unconnected asymmetric 86
## 835 0.000 unconnected asymmetric 95
## 836 0.000 unconnected asymmetric 96
## 837 0.000 unconnected asymmetric 105
## 838 0.000 unconnected asymmetric 106
## 839 0.000 unconnected asymmetric 115
## 840 0.000 unconnected asymmetric 116
## 841 0.000 unconnected asymmetric 5
## 842 0.000 unconnected asymmetric 6
## 843 0.000 unconnected asymmetric 15
## 844 0.000 unconnected asymmetric 16
## 845 0.000 unconnected asymmetric 25
## 846 0.000 unconnected asymmetric 26
## 847 0.000 unconnected asymmetric 35
## 848 0.000 unconnected asymmetric 36
## 849 0.000 unconnected asymmetric 45
## 850 0.000 unconnected asymmetric 46
## 851 0.000 unconnected asymmetric 55
## 852 0.000 unconnected asymmetric 56
## 853 0.000 unconnected asymmetric 65
## 854 0.000 unconnected asymmetric 66
## 855 0.000 unconnected asymmetric 75
## 856 0.000 unconnected asymmetric 76
## 857 0.000 unconnected asymmetric 85
## 858 0.000 unconnected asymmetric 86
## 859 0.000 unconnected asymmetric 95
## 860 0.000 unconnected asymmetric 96
## 861 0.000 unconnected asymmetric 105
## 862 0.000 unconnected asymmetric 106
## 863 0.000 unconnected asymmetric 115
## 864 0.000 unconnected asymmetric 116
## 865 0.000 unconnected asymmetric 5
## 866 0.000 unconnected asymmetric 6
## 867 0.000 unconnected asymmetric 15
## 868 0.000 unconnected asymmetric 16
## 869 0.000 unconnected asymmetric 25
## 870 0.000 unconnected asymmetric 26
## 871 0.000 unconnected asymmetric 35
## 872 0.000 unconnected asymmetric 36
## 873 0.000 unconnected asymmetric 45
## 874 0.000 unconnected asymmetric 46
## 875 0.000 unconnected asymmetric 55
## 876 0.000 unconnected asymmetric 56
## 877 0.000 unconnected asymmetric 65
## 878 0.000 unconnected asymmetric 66
## 879 0.000 unconnected asymmetric 75
## 880 0.000 unconnected asymmetric 76
## 881 0.000 unconnected asymmetric 85
## 882 0.000 unconnected asymmetric 86
## 883 0.000 unconnected asymmetric 95
## 884 0.000 unconnected asymmetric 96
## 885 0.000 unconnected asymmetric 105
## 886 0.000 unconnected asymmetric 106
## 887 0.000 unconnected asymmetric 115
## 888 0.000 unconnected asymmetric 116
## 889 0.000 unconnected asymmetric 5
## 890 0.000 unconnected asymmetric 6
## 891 0.000 unconnected asymmetric 15
## 892 0.000 unconnected asymmetric 16
## 893 0.000 unconnected asymmetric 25
## 894 0.000 unconnected asymmetric 26
## 895 0.000 unconnected asymmetric 35
## 896 0.000 unconnected asymmetric 36
## 897 0.000 unconnected asymmetric 45
## 898 0.000 unconnected asymmetric 46
## 899 0.000 unconnected asymmetric 55
## 900 0.000 unconnected asymmetric 56
## 901 0.000 unconnected asymmetric 65
## 902 0.000 unconnected asymmetric 66
## 903 0.000 unconnected asymmetric 75
## 904 0.000 unconnected asymmetric 76
## 905 0.000 unconnected asymmetric 85
## 906 0.000 unconnected asymmetric 86
## 907 0.000 unconnected asymmetric 95
## 908 0.000 unconnected asymmetric 96
## 909 0.000 unconnected asymmetric 105
## 910 0.000 unconnected asymmetric 106
## 911 0.000 unconnected asymmetric 115
## 912 0.000 unconnected asymmetric 116
## 913 0.000 unconnected asymmetric 5
## 914 0.000 unconnected asymmetric 6
## 915 0.000 unconnected asymmetric 15
## 916 0.000 unconnected asymmetric 16
## 917 0.000 unconnected asymmetric 25
## 918 0.000 unconnected asymmetric 26
## 919 0.000 unconnected asymmetric 35
## 920 0.000 unconnected asymmetric 36
## 921 0.000 unconnected asymmetric 45
## 922 0.000 unconnected asymmetric 46
## 923 0.000 unconnected asymmetric 55
## 924 0.000 unconnected asymmetric 56
## 925 0.000 unconnected asymmetric 65
## 926 0.000 unconnected asymmetric 66
## 927 0.000 unconnected asymmetric 75
## 928 0.000 unconnected asymmetric 76
## 929 0.000 unconnected asymmetric 85
## 930 0.000 unconnected asymmetric 86
## 931 0.000 unconnected asymmetric 95
## 932 0.000 unconnected asymmetric 96
## 933 0.000 unconnected asymmetric 105
## 934 0.000 unconnected asymmetric 106
## 935 0.000 unconnected asymmetric 115
## 936 0.000 unconnected asymmetric 116
## 937 0.000 unconnected asymmetric 5
## 938 0.000 unconnected asymmetric 6
## 939 0.000 unconnected asymmetric 15
## 940 0.000 unconnected asymmetric 16
## 941 0.000 unconnected asymmetric 25
## 942 0.000 unconnected asymmetric 26
## 943 0.000 unconnected asymmetric 35
## 944 0.000 unconnected asymmetric 36
## 945 0.000 unconnected asymmetric 45
## 946 0.000 unconnected asymmetric 46
## 947 0.000 unconnected asymmetric 55
## 948 0.000 unconnected asymmetric 56
## 949 0.000 unconnected asymmetric 65
## 950 0.000 unconnected asymmetric 66
## 951 0.000 unconnected asymmetric 75
## 952 0.000 unconnected asymmetric 76
## 953 0.000 unconnected asymmetric 85
## 954 0.000 unconnected asymmetric 86
## 955 0.000 unconnected asymmetric 95
## 956 0.000 unconnected asymmetric 96
## 957 0.000 unconnected asymmetric 105
## 958 0.000 unconnected asymmetric 106
## 959 0.000 unconnected asymmetric 115
## 960 0.000 unconnected asymmetric 116
## 961 2243.895 unconnected asymmetric 5
## 962 2243.895 unconnected asymmetric 6
## 963 2243.895 unconnected asymmetric 15
## 964 2243.895 unconnected asymmetric 18
## 965 2243.895 unconnected asymmetric 19
## 966 2243.895 unconnected asymmetric 20
## 967 2243.895 unconnected asymmetric 21
## 968 2243.895 unconnected asymmetric 22
## 969 2243.895 unconnected asymmetric 23
## 970 2243.895 unconnected asymmetric 26
## 971 2243.895 unconnected asymmetric 35
## 972 2243.895 unconnected asymmetric 36
## 973 2243.895 unconnected asymmetric 41
## 974 2243.895 unconnected asymmetric 42
## 975 2243.895 unconnected asymmetric 43
## 976 2243.895 unconnected asymmetric 48
## 977 2243.895 unconnected asymmetric 49
## 978 2243.895 unconnected asymmetric 50
## 979 2243.895 unconnected asymmetric 111
## 980 2243.895 unconnected asymmetric 112
## 981 2243.895 unconnected asymmetric 113
## 982 2243.895 unconnected asymmetric 118
## 983 2243.895 unconnected asymmetric 119
## 984 2243.895 unconnected asymmetric 120
## 985 0.000 unconnected asymmetric 5
## 986 0.000 unconnected asymmetric 6
## 987 0.000 unconnected asymmetric 15
## 988 0.000 unconnected asymmetric 18
## 989 0.000 unconnected asymmetric 19
## 990 0.000 unconnected asymmetric 20
## 991 0.000 unconnected asymmetric 21
## 992 0.000 unconnected asymmetric 22
## 993 0.000 unconnected asymmetric 23
## 994 0.000 unconnected asymmetric 26
## 995 0.000 unconnected asymmetric 35
## 996 0.000 unconnected asymmetric 36
## 997 0.000 unconnected asymmetric 41
## 998 0.000 unconnected asymmetric 42
## 999 0.000 unconnected asymmetric 43
## 1000 0.000 unconnected asymmetric 48
## 1001 0.000 unconnected asymmetric 49
## 1002 0.000 unconnected asymmetric 50
## 1003 0.000 unconnected asymmetric 111
## 1004 0.000 unconnected asymmetric 112
## 1005 0.000 unconnected asymmetric 113
## 1006 0.000 unconnected asymmetric 118
## 1007 0.000 unconnected asymmetric 119
## 1008 0.000 unconnected asymmetric 120
## 1009 0.000 unconnected asymmetric 5
## 1010 0.000 unconnected asymmetric 6
## 1011 0.000 unconnected asymmetric 15
## 1012 0.000 unconnected asymmetric 18
## 1013 0.000 unconnected asymmetric 19
## 1014 0.000 unconnected asymmetric 20
## 1015 0.000 unconnected asymmetric 21
## 1016 0.000 unconnected asymmetric 22
## 1017 0.000 unconnected asymmetric 23
## 1018 0.000 unconnected asymmetric 26
## 1019 0.000 unconnected asymmetric 35
## 1020 0.000 unconnected asymmetric 36
## 1021 0.000 unconnected asymmetric 41
## 1022 0.000 unconnected asymmetric 42
## 1023 0.000 unconnected asymmetric 43
## 1024 0.000 unconnected asymmetric 48
## 1025 0.000 unconnected asymmetric 49
## 1026 0.000 unconnected asymmetric 50
## 1027 0.000 unconnected asymmetric 111
## 1028 0.000 unconnected asymmetric 112
## 1029 0.000 unconnected asymmetric 113
## 1030 0.000 unconnected asymmetric 118
## 1031 0.000 unconnected asymmetric 119
## 1032 0.000 unconnected asymmetric 120
## 1033 0.000 unconnected asymmetric 5
## 1034 0.000 unconnected asymmetric 6
## 1035 0.000 unconnected asymmetric 15
## 1036 0.000 unconnected asymmetric 18
## 1037 0.000 unconnected asymmetric 19
## 1038 0.000 unconnected asymmetric 20
## 1039 0.000 unconnected asymmetric 21
## 1040 0.000 unconnected asymmetric 22
## 1041 0.000 unconnected asymmetric 23
## 1042 0.000 unconnected asymmetric 26
## 1043 0.000 unconnected asymmetric 35
## 1044 0.000 unconnected asymmetric 36
## 1045 0.000 unconnected asymmetric 41
## 1046 0.000 unconnected asymmetric 42
## 1047 0.000 unconnected asymmetric 43
## 1048 0.000 unconnected asymmetric 48
## 1049 0.000 unconnected asymmetric 49
## 1050 0.000 unconnected asymmetric 50
## 1051 0.000 unconnected asymmetric 111
## 1052 0.000 unconnected asymmetric 112
## 1053 0.000 unconnected asymmetric 113
## 1054 0.000 unconnected asymmetric 118
## 1055 0.000 unconnected asymmetric 119
## 1056 0.000 unconnected asymmetric 120
## 1057 0.000 unconnected asymmetric 5
## 1058 0.000 unconnected asymmetric 6
## 1059 0.000 unconnected asymmetric 15
## 1060 0.000 unconnected asymmetric 18
## 1061 0.000 unconnected asymmetric 19
## 1062 0.000 unconnected asymmetric 20
## 1063 0.000 unconnected asymmetric 21
## 1064 0.000 unconnected asymmetric 22
## 1065 0.000 unconnected asymmetric 23
## 1066 0.000 unconnected asymmetric 26
## 1067 0.000 unconnected asymmetric 35
## 1068 0.000 unconnected asymmetric 36
## 1069 0.000 unconnected asymmetric 41
## 1070 0.000 unconnected asymmetric 42
## 1071 0.000 unconnected asymmetric 43
## 1072 0.000 unconnected asymmetric 48
## 1073 0.000 unconnected asymmetric 49
## 1074 0.000 unconnected asymmetric 50
## 1075 0.000 unconnected asymmetric 111
## 1076 0.000 unconnected asymmetric 112
## 1077 0.000 unconnected asymmetric 113
## 1078 0.000 unconnected asymmetric 118
## 1079 0.000 unconnected asymmetric 119
## 1080 0.000 unconnected asymmetric 120
## 1081 0.000 unconnected asymmetric 5
## 1082 0.000 unconnected asymmetric 6
## 1083 0.000 unconnected asymmetric 15
## 1084 0.000 unconnected asymmetric 18
## 1085 0.000 unconnected asymmetric 19
## 1086 0.000 unconnected asymmetric 20
## 1087 0.000 unconnected asymmetric 21
## 1088 0.000 unconnected asymmetric 22
## 1089 0.000 unconnected asymmetric 23
## 1090 0.000 unconnected asymmetric 26
## 1091 0.000 unconnected asymmetric 35
## 1092 0.000 unconnected asymmetric 36
## 1093 0.000 unconnected asymmetric 41
## 1094 0.000 unconnected asymmetric 42
## 1095 0.000 unconnected asymmetric 43
## 1096 0.000 unconnected asymmetric 48
## 1097 0.000 unconnected asymmetric 49
## 1098 0.000 unconnected asymmetric 50
## 1099 0.000 unconnected asymmetric 111
## 1100 0.000 unconnected asymmetric 112
## 1101 0.000 unconnected asymmetric 113
## 1102 0.000 unconnected asymmetric 118
## 1103 0.000 unconnected asymmetric 119
## 1104 0.000 unconnected asymmetric 120
## 1105 0.000 unconnected asymmetric 5
## 1106 0.000 unconnected asymmetric 6
## 1107 0.000 unconnected asymmetric 15
## 1108 0.000 unconnected asymmetric 18
## 1109 0.000 unconnected asymmetric 19
## 1110 0.000 unconnected asymmetric 20
## 1111 0.000 unconnected asymmetric 21
## 1112 0.000 unconnected asymmetric 22
## 1113 0.000 unconnected asymmetric 23
## 1114 0.000 unconnected asymmetric 26
## 1115 0.000 unconnected asymmetric 35
## 1116 0.000 unconnected asymmetric 36
## 1117 0.000 unconnected asymmetric 41
## 1118 0.000 unconnected asymmetric 42
## 1119 0.000 unconnected asymmetric 43
## 1120 0.000 unconnected asymmetric 48
## 1121 0.000 unconnected asymmetric 49
## 1122 0.000 unconnected asymmetric 50
## 1123 0.000 unconnected asymmetric 111
## 1124 0.000 unconnected asymmetric 112
## 1125 0.000 unconnected asymmetric 113
## 1126 0.000 unconnected asymmetric 118
## 1127 0.000 unconnected asymmetric 119
## 1128 0.000 unconnected asymmetric 120
## 1129 0.000 unconnected asymmetric 5
## 1130 0.000 unconnected asymmetric 6
## 1131 0.000 unconnected asymmetric 15
## 1132 0.000 unconnected asymmetric 18
## 1133 0.000 unconnected asymmetric 19
## 1134 0.000 unconnected asymmetric 20
## 1135 0.000 unconnected asymmetric 21
## 1136 0.000 unconnected asymmetric 22
## 1137 0.000 unconnected asymmetric 23
## 1138 0.000 unconnected asymmetric 26
## 1139 0.000 unconnected asymmetric 35
## 1140 0.000 unconnected asymmetric 36
## 1141 0.000 unconnected asymmetric 41
## 1142 0.000 unconnected asymmetric 42
## 1143 0.000 unconnected asymmetric 43
## 1144 0.000 unconnected asymmetric 48
## 1145 0.000 unconnected asymmetric 49
## 1146 0.000 unconnected asymmetric 50
## 1147 0.000 unconnected asymmetric 111
## 1148 0.000 unconnected asymmetric 112
## 1149 0.000 unconnected asymmetric 113
## 1150 0.000 unconnected asymmetric 118
## 1151 0.000 unconnected asymmetric 119
## 1152 0.000 unconnected asymmetric 120
## 1153 2243.895 unconnected asymmetric 1
## 1154 2243.895 unconnected asymmetric 2
## 1155 2243.895 unconnected asymmetric 3
## 1156 2243.895 unconnected asymmetric 8
## 1157 2243.895 unconnected asymmetric 9
## 1158 2243.895 unconnected asymmetric 10
## 1159 2243.895 unconnected asymmetric 71
## 1160 2243.895 unconnected asymmetric 72
## 1161 2243.895 unconnected asymmetric 73
## 1162 2243.895 unconnected asymmetric 78
## 1163 2243.895 unconnected asymmetric 79
## 1164 2243.895 unconnected asymmetric 80
## 1165 2243.895 unconnected asymmetric 85
## 1166 2243.895 unconnected asymmetric 86
## 1167 2243.895 unconnected asymmetric 95
## 1168 2243.895 unconnected asymmetric 98
## 1169 2243.895 unconnected asymmetric 99
## 1170 2243.895 unconnected asymmetric 100
## 1171 2243.895 unconnected asymmetric 101
## 1172 2243.895 unconnected asymmetric 102
## 1173 2243.895 unconnected asymmetric 103
## 1174 2243.895 unconnected asymmetric 106
## 1175 2243.895 unconnected asymmetric 115
## 1176 2243.895 unconnected asymmetric 116
## 1177 0.000 unconnected asymmetric 1
## 1178 0.000 unconnected asymmetric 2
## 1179 0.000 unconnected asymmetric 3
## 1180 0.000 unconnected asymmetric 8
## 1181 0.000 unconnected asymmetric 9
## 1182 0.000 unconnected asymmetric 10
## 1183 0.000 unconnected asymmetric 71
## 1184 0.000 unconnected asymmetric 72
## 1185 0.000 unconnected asymmetric 73
## 1186 0.000 unconnected asymmetric 78
## 1187 0.000 unconnected asymmetric 79
## 1188 0.000 unconnected asymmetric 80
## 1189 0.000 unconnected asymmetric 85
## 1190 0.000 unconnected asymmetric 86
## 1191 0.000 unconnected asymmetric 95
## 1192 0.000 unconnected asymmetric 98
## 1193 0.000 unconnected asymmetric 99
## 1194 0.000 unconnected asymmetric 100
## 1195 0.000 unconnected asymmetric 101
## 1196 0.000 unconnected asymmetric 102
## 1197 0.000 unconnected asymmetric 103
## 1198 0.000 unconnected asymmetric 106
## 1199 0.000 unconnected asymmetric 115
## 1200 0.000 unconnected asymmetric 116
## 1201 0.000 unconnected asymmetric 1
## 1202 0.000 unconnected asymmetric 2
## 1203 0.000 unconnected asymmetric 3
## 1204 0.000 unconnected asymmetric 8
## 1205 0.000 unconnected asymmetric 9
## 1206 0.000 unconnected asymmetric 10
## 1207 0.000 unconnected asymmetric 71
## 1208 0.000 unconnected asymmetric 72
## 1209 0.000 unconnected asymmetric 73
## 1210 0.000 unconnected asymmetric 78
## 1211 0.000 unconnected asymmetric 79
## 1212 0.000 unconnected asymmetric 80
## 1213 0.000 unconnected asymmetric 85
## 1214 0.000 unconnected asymmetric 86
## 1215 0.000 unconnected asymmetric 95
## 1216 0.000 unconnected asymmetric 98
## 1217 0.000 unconnected asymmetric 99
## 1218 0.000 unconnected asymmetric 100
## 1219 0.000 unconnected asymmetric 101
## 1220 0.000 unconnected asymmetric 102
## 1221 0.000 unconnected asymmetric 103
## 1222 0.000 unconnected asymmetric 106
## 1223 0.000 unconnected asymmetric 115
## 1224 0.000 unconnected asymmetric 116
## 1225 0.000 unconnected asymmetric 1
## 1226 0.000 unconnected asymmetric 2
## 1227 0.000 unconnected asymmetric 3
## 1228 0.000 unconnected asymmetric 8
## 1229 0.000 unconnected asymmetric 9
## 1230 0.000 unconnected asymmetric 10
## 1231 0.000 unconnected asymmetric 71
## 1232 0.000 unconnected asymmetric 72
## 1233 0.000 unconnected asymmetric 73
## 1234 0.000 unconnected asymmetric 78
## 1235 0.000 unconnected asymmetric 79
## 1236 0.000 unconnected asymmetric 80
## 1237 0.000 unconnected asymmetric 85
## 1238 0.000 unconnected asymmetric 86
## 1239 0.000 unconnected asymmetric 95
## 1240 0.000 unconnected asymmetric 98
## 1241 0.000 unconnected asymmetric 99
## 1242 0.000 unconnected asymmetric 100
## 1243 0.000 unconnected asymmetric 101
## 1244 0.000 unconnected asymmetric 102
## 1245 0.000 unconnected asymmetric 103
## 1246 0.000 unconnected asymmetric 106
## 1247 0.000 unconnected asymmetric 115
## 1248 0.000 unconnected asymmetric 116
## 1249 0.000 unconnected asymmetric 1
## 1250 0.000 unconnected asymmetric 2
## 1251 0.000 unconnected asymmetric 3
## 1252 0.000 unconnected asymmetric 8
## 1253 0.000 unconnected asymmetric 9
## 1254 0.000 unconnected asymmetric 10
## 1255 0.000 unconnected asymmetric 71
## 1256 0.000 unconnected asymmetric 72
## 1257 0.000 unconnected asymmetric 73
## 1258 0.000 unconnected asymmetric 78
## 1259 0.000 unconnected asymmetric 79
## 1260 0.000 unconnected asymmetric 80
## 1261 0.000 unconnected asymmetric 85
## 1262 0.000 unconnected asymmetric 86
## 1263 0.000 unconnected asymmetric 95
## 1264 0.000 unconnected asymmetric 98
## 1265 0.000 unconnected asymmetric 99
## 1266 0.000 unconnected asymmetric 100
## 1267 0.000 unconnected asymmetric 101
## 1268 0.000 unconnected asymmetric 102
## 1269 0.000 unconnected asymmetric 103
## 1270 0.000 unconnected asymmetric 106
## 1271 0.000 unconnected asymmetric 115
## 1272 0.000 unconnected asymmetric 116
## 1273 0.000 unconnected asymmetric 1
## 1274 0.000 unconnected asymmetric 2
## 1275 0.000 unconnected asymmetric 3
## 1276 0.000 unconnected asymmetric 8
## 1277 0.000 unconnected asymmetric 9
## 1278 0.000 unconnected asymmetric 10
## 1279 0.000 unconnected asymmetric 71
## 1280 0.000 unconnected asymmetric 72
## 1281 0.000 unconnected asymmetric 73
## 1282 0.000 unconnected asymmetric 78
## 1283 0.000 unconnected asymmetric 79
## 1284 0.000 unconnected asymmetric 80
## 1285 0.000 unconnected asymmetric 85
## 1286 0.000 unconnected asymmetric 86
## 1287 0.000 unconnected asymmetric 95
## 1288 0.000 unconnected asymmetric 98
## 1289 0.000 unconnected asymmetric 99
## 1290 0.000 unconnected asymmetric 100
## 1291 0.000 unconnected asymmetric 101
## 1292 0.000 unconnected asymmetric 102
## 1293 0.000 unconnected asymmetric 103
## 1294 0.000 unconnected asymmetric 106
## 1295 0.000 unconnected asymmetric 115
## 1296 0.000 unconnected asymmetric 116
## 1297 0.000 unconnected asymmetric 1
## 1298 0.000 unconnected asymmetric 2
## 1299 0.000 unconnected asymmetric 3
## 1300 0.000 unconnected asymmetric 8
## 1301 0.000 unconnected asymmetric 9
## 1302 0.000 unconnected asymmetric 10
## 1303 0.000 unconnected asymmetric 71
## 1304 0.000 unconnected asymmetric 72
## 1305 0.000 unconnected asymmetric 73
## 1306 0.000 unconnected asymmetric 78
## 1307 0.000 unconnected asymmetric 79
## 1308 0.000 unconnected asymmetric 80
## 1309 0.000 unconnected asymmetric 85
## 1310 0.000 unconnected asymmetric 86
## 1311 0.000 unconnected asymmetric 95
## 1312 0.000 unconnected asymmetric 98
## 1313 0.000 unconnected asymmetric 99
## 1314 0.000 unconnected asymmetric 100
## 1315 0.000 unconnected asymmetric 101
## 1316 0.000 unconnected asymmetric 102
## 1317 0.000 unconnected asymmetric 103
## 1318 0.000 unconnected asymmetric 106
## 1319 0.000 unconnected asymmetric 115
## 1320 0.000 unconnected asymmetric 116
## 1321 0.000 unconnected asymmetric 1
## 1322 0.000 unconnected asymmetric 2
## 1323 0.000 unconnected asymmetric 3
## 1324 0.000 unconnected asymmetric 8
## 1325 0.000 unconnected asymmetric 9
## 1326 0.000 unconnected asymmetric 10
## 1327 0.000 unconnected asymmetric 71
## 1328 0.000 unconnected asymmetric 72
## 1329 0.000 unconnected asymmetric 73
## 1330 0.000 unconnected asymmetric 78
## 1331 0.000 unconnected asymmetric 79
## 1332 0.000 unconnected asymmetric 80
## 1333 0.000 unconnected asymmetric 85
## 1334 0.000 unconnected asymmetric 86
## 1335 0.000 unconnected asymmetric 95
## 1336 0.000 unconnected asymmetric 98
## 1337 0.000 unconnected asymmetric 99
## 1338 0.000 unconnected asymmetric 100
## 1339 0.000 unconnected asymmetric 101
## 1340 0.000 unconnected asymmetric 102
## 1341 0.000 unconnected asymmetric 103
## 1342 0.000 unconnected asymmetric 106
## 1343 0.000 unconnected asymmetric 115
## 1344 0.000 unconnected asymmetric 116
## 1345 2243.895 unconnected asymmetric 31
## 1346 2243.895 unconnected asymmetric 32
## 1347 2243.895 unconnected asymmetric 33
## 1348 2243.895 unconnected asymmetric 38
## 1349 2243.895 unconnected asymmetric 39
## 1350 2243.895 unconnected asymmetric 40
## 1351 2243.895 unconnected asymmetric 45
## 1352 2243.895 unconnected asymmetric 46
## 1353 2243.895 unconnected asymmetric 55
## 1354 2243.895 unconnected asymmetric 58
## 1355 2243.895 unconnected asymmetric 59
## 1356 2243.895 unconnected asymmetric 60
## 1357 2243.895 unconnected asymmetric 61
## 1358 2243.895 unconnected asymmetric 62
## 1359 2243.895 unconnected asymmetric 63
## 1360 2243.895 unconnected asymmetric 66
## 1361 2243.895 unconnected asymmetric 75
## 1362 2243.895 unconnected asymmetric 76
## 1363 2243.895 unconnected asymmetric 81
## 1364 2243.895 unconnected asymmetric 82
## 1365 2243.895 unconnected asymmetric 83
## 1366 2243.895 unconnected asymmetric 88
## 1367 2243.895 unconnected asymmetric 89
## 1368 2243.895 unconnected asymmetric 90
## 1369 0.000 unconnected asymmetric 31
## 1370 0.000 unconnected asymmetric 32
## 1371 0.000 unconnected asymmetric 33
## 1372 0.000 unconnected asymmetric 38
## 1373 0.000 unconnected asymmetric 39
## 1374 0.000 unconnected asymmetric 40
## 1375 0.000 unconnected asymmetric 45
## 1376 0.000 unconnected asymmetric 46
## 1377 0.000 unconnected asymmetric 55
## 1378 0.000 unconnected asymmetric 58
## 1379 0.000 unconnected asymmetric 59
## 1380 0.000 unconnected asymmetric 60
## 1381 0.000 unconnected asymmetric 61
## 1382 0.000 unconnected asymmetric 62
## 1383 0.000 unconnected asymmetric 63
## 1384 0.000 unconnected asymmetric 66
## 1385 0.000 unconnected asymmetric 75
## 1386 0.000 unconnected asymmetric 76
## 1387 0.000 unconnected asymmetric 81
## 1388 0.000 unconnected asymmetric 82
## 1389 0.000 unconnected asymmetric 83
## 1390 0.000 unconnected asymmetric 88
## 1391 0.000 unconnected asymmetric 89
## 1392 0.000 unconnected asymmetric 90
## 1393 0.000 unconnected asymmetric 31
## 1394 0.000 unconnected asymmetric 32
## 1395 0.000 unconnected asymmetric 33
## 1396 0.000 unconnected asymmetric 38
## 1397 0.000 unconnected asymmetric 39
## 1398 0.000 unconnected asymmetric 40
## 1399 0.000 unconnected asymmetric 45
## 1400 0.000 unconnected asymmetric 46
## 1401 0.000 unconnected asymmetric 55
## 1402 0.000 unconnected asymmetric 58
## 1403 0.000 unconnected asymmetric 59
## 1404 0.000 unconnected asymmetric 60
## 1405 0.000 unconnected asymmetric 61
## 1406 0.000 unconnected asymmetric 62
## 1407 0.000 unconnected asymmetric 63
## 1408 0.000 unconnected asymmetric 66
## 1409 0.000 unconnected asymmetric 75
## 1410 0.000 unconnected asymmetric 76
## 1411 0.000 unconnected asymmetric 81
## 1412 0.000 unconnected asymmetric 82
## 1413 0.000 unconnected asymmetric 83
## 1414 0.000 unconnected asymmetric 88
## 1415 0.000 unconnected asymmetric 89
## 1416 0.000 unconnected asymmetric 90
## 1417 0.000 unconnected asymmetric 31
## 1418 0.000 unconnected asymmetric 32
## 1419 0.000 unconnected asymmetric 33
## 1420 0.000 unconnected asymmetric 38
## 1421 0.000 unconnected asymmetric 39
## 1422 0.000 unconnected asymmetric 40
## 1423 0.000 unconnected asymmetric 45
## 1424 0.000 unconnected asymmetric 46
## 1425 0.000 unconnected asymmetric 55
## 1426 0.000 unconnected asymmetric 58
## 1427 0.000 unconnected asymmetric 59
## 1428 0.000 unconnected asymmetric 60
## 1429 0.000 unconnected asymmetric 61
## 1430 0.000 unconnected asymmetric 62
## 1431 0.000 unconnected asymmetric 63
## 1432 0.000 unconnected asymmetric 66
## 1433 0.000 unconnected asymmetric 75
## 1434 0.000 unconnected asymmetric 76
## 1435 0.000 unconnected asymmetric 81
## 1436 0.000 unconnected asymmetric 82
## 1437 0.000 unconnected asymmetric 83
## 1438 0.000 unconnected asymmetric 88
## 1439 0.000 unconnected asymmetric 89
## 1440 0.000 unconnected asymmetric 90
## 1441 0.000 unconnected asymmetric 31
## 1442 0.000 unconnected asymmetric 32
## 1443 0.000 unconnected asymmetric 33
## 1444 0.000 unconnected asymmetric 38
## 1445 0.000 unconnected asymmetric 39
## 1446 0.000 unconnected asymmetric 40
## 1447 0.000 unconnected asymmetric 45
## 1448 0.000 unconnected asymmetric 46
## 1449 0.000 unconnected asymmetric 55
## 1450 0.000 unconnected asymmetric 58
## 1451 0.000 unconnected asymmetric 59
## 1452 0.000 unconnected asymmetric 60
## 1453 0.000 unconnected asymmetric 61
## 1454 0.000 unconnected asymmetric 62
## 1455 0.000 unconnected asymmetric 63
## 1456 0.000 unconnected asymmetric 66
## 1457 0.000 unconnected asymmetric 75
## 1458 0.000 unconnected asymmetric 76
## 1459 0.000 unconnected asymmetric 81
## 1460 0.000 unconnected asymmetric 82
## 1461 0.000 unconnected asymmetric 83
## 1462 0.000 unconnected asymmetric 88
## 1463 0.000 unconnected asymmetric 89
## 1464 0.000 unconnected asymmetric 90
## 1465 0.000 unconnected asymmetric 31
## 1466 0.000 unconnected asymmetric 32
## 1467 0.000 unconnected asymmetric 33
## 1468 0.000 unconnected asymmetric 38
## 1469 0.000 unconnected asymmetric 39
## 1470 0.000 unconnected asymmetric 40
## 1471 0.000 unconnected asymmetric 45
## 1472 0.000 unconnected asymmetric 46
## 1473 0.000 unconnected asymmetric 55
## 1474 0.000 unconnected asymmetric 58
## 1475 0.000 unconnected asymmetric 59
## 1476 0.000 unconnected asymmetric 60
## 1477 0.000 unconnected asymmetric 61
## 1478 0.000 unconnected asymmetric 62
## 1479 0.000 unconnected asymmetric 63
## 1480 0.000 unconnected asymmetric 66
## 1481 0.000 unconnected asymmetric 75
## 1482 0.000 unconnected asymmetric 76
## 1483 0.000 unconnected asymmetric 81
## 1484 0.000 unconnected asymmetric 82
## 1485 0.000 unconnected asymmetric 83
## 1486 0.000 unconnected asymmetric 88
## 1487 0.000 unconnected asymmetric 89
## 1488 0.000 unconnected asymmetric 90
## 1489 0.000 unconnected asymmetric 31
## 1490 0.000 unconnected asymmetric 32
## 1491 0.000 unconnected asymmetric 33
## 1492 0.000 unconnected asymmetric 38
## 1493 0.000 unconnected asymmetric 39
## 1494 0.000 unconnected asymmetric 40
## 1495 0.000 unconnected asymmetric 45
## 1496 0.000 unconnected asymmetric 46
## 1497 0.000 unconnected asymmetric 55
## 1498 0.000 unconnected asymmetric 58
## 1499 0.000 unconnected asymmetric 59
## 1500 0.000 unconnected asymmetric 60
## 1501 0.000 unconnected asymmetric 61
## 1502 0.000 unconnected asymmetric 62
## 1503 0.000 unconnected asymmetric 63
## 1504 0.000 unconnected asymmetric 66
## 1505 0.000 unconnected asymmetric 75
## 1506 0.000 unconnected asymmetric 76
## 1507 0.000 unconnected asymmetric 81
## 1508 0.000 unconnected asymmetric 82
## 1509 0.000 unconnected asymmetric 83
## 1510 0.000 unconnected asymmetric 88
## 1511 0.000 unconnected asymmetric 89
## 1512 0.000 unconnected asymmetric 90
## 1513 0.000 unconnected asymmetric 31
## 1514 0.000 unconnected asymmetric 32
## 1515 0.000 unconnected asymmetric 33
## 1516 0.000 unconnected asymmetric 38
## 1517 0.000 unconnected asymmetric 39
## 1518 0.000 unconnected asymmetric 40
## 1519 0.000 unconnected asymmetric 45
## 1520 0.000 unconnected asymmetric 46
## 1521 0.000 unconnected asymmetric 55
## 1522 0.000 unconnected asymmetric 58
## 1523 0.000 unconnected asymmetric 59
## 1524 0.000 unconnected asymmetric 60
## 1525 0.000 unconnected asymmetric 61
## 1526 0.000 unconnected asymmetric 62
## 1527 0.000 unconnected asymmetric 63
## 1528 0.000 unconnected asymmetric 66
## 1529 0.000 unconnected asymmetric 75
## 1530 0.000 unconnected asymmetric 76
## 1531 0.000 unconnected asymmetric 81
## 1532 0.000 unconnected asymmetric 82
## 1533 0.000 unconnected asymmetric 83
## 1534 0.000 unconnected asymmetric 88
## 1535 0.000 unconnected asymmetric 89
## 1536 0.000 unconnected asymmetric 90
## 1537 2243.895 unconnected asymmetric 11
## 1538 2243.895 unconnected asymmetric 12
## 1539 2243.895 unconnected asymmetric 13
## 1540 2243.895 unconnected asymmetric 16
## 1541 2243.895 unconnected asymmetric 25
## 1542 2243.895 unconnected asymmetric 28
## 1543 2243.895 unconnected asymmetric 29
## 1544 2243.895 unconnected asymmetric 30
## 1545 2243.895 unconnected asymmetric 51
## 1546 2243.895 unconnected asymmetric 52
## 1547 2243.895 unconnected asymmetric 53
## 1548 2243.895 unconnected asymmetric 56
## 1549 2243.895 unconnected asymmetric 65
## 1550 2243.895 unconnected asymmetric 68
## 1551 2243.895 unconnected asymmetric 69
## 1552 2243.895 unconnected asymmetric 70
## 1553 2243.895 unconnected asymmetric 91
## 1554 2243.895 unconnected asymmetric 92
## 1555 2243.895 unconnected asymmetric 93
## 1556 2243.895 unconnected asymmetric 96
## 1557 2243.895 unconnected asymmetric 105
## 1558 2243.895 unconnected asymmetric 108
## 1559 2243.895 unconnected asymmetric 109
## 1560 2243.895 unconnected asymmetric 110
## 1561 0.000 unconnected asymmetric 11
## 1562 0.000 unconnected asymmetric 12
## 1563 0.000 unconnected asymmetric 13
## 1564 0.000 unconnected asymmetric 16
## 1565 0.000 unconnected asymmetric 25
## 1566 0.000 unconnected asymmetric 28
## 1567 0.000 unconnected asymmetric 29
## 1568 0.000 unconnected asymmetric 30
## 1569 0.000 unconnected asymmetric 51
## 1570 0.000 unconnected asymmetric 52
## 1571 0.000 unconnected asymmetric 53
## 1572 0.000 unconnected asymmetric 56
## 1573 0.000 unconnected asymmetric 65
## 1574 0.000 unconnected asymmetric 68
## 1575 0.000 unconnected asymmetric 69
## 1576 0.000 unconnected asymmetric 70
## 1577 0.000 unconnected asymmetric 91
## 1578 0.000 unconnected asymmetric 92
## 1579 0.000 unconnected asymmetric 93
## 1580 0.000 unconnected asymmetric 96
## 1581 0.000 unconnected asymmetric 105
## 1582 0.000 unconnected asymmetric 108
## 1583 0.000 unconnected asymmetric 109
## 1584 0.000 unconnected asymmetric 110
## 1585 0.000 unconnected asymmetric 11
## 1586 0.000 unconnected asymmetric 12
## 1587 0.000 unconnected asymmetric 13
## 1588 0.000 unconnected asymmetric 16
## 1589 0.000 unconnected asymmetric 25
## 1590 0.000 unconnected asymmetric 28
## 1591 0.000 unconnected asymmetric 29
## 1592 0.000 unconnected asymmetric 30
## 1593 0.000 unconnected asymmetric 51
## 1594 0.000 unconnected asymmetric 52
## 1595 0.000 unconnected asymmetric 53
## 1596 0.000 unconnected asymmetric 56
## 1597 0.000 unconnected asymmetric 65
## 1598 0.000 unconnected asymmetric 68
## 1599 0.000 unconnected asymmetric 69
## 1600 0.000 unconnected asymmetric 70
## 1601 0.000 unconnected asymmetric 91
## 1602 0.000 unconnected asymmetric 92
## 1603 0.000 unconnected asymmetric 93
## 1604 0.000 unconnected asymmetric 96
## 1605 0.000 unconnected asymmetric 105
## 1606 0.000 unconnected asymmetric 108
## 1607 0.000 unconnected asymmetric 109
## 1608 0.000 unconnected asymmetric 110
## 1609 0.000 unconnected asymmetric 11
## 1610 0.000 unconnected asymmetric 12
## 1611 0.000 unconnected asymmetric 13
## 1612 0.000 unconnected asymmetric 16
## 1613 0.000 unconnected asymmetric 25
## 1614 0.000 unconnected asymmetric 28
## 1615 0.000 unconnected asymmetric 29
## 1616 0.000 unconnected asymmetric 30
## 1617 0.000 unconnected asymmetric 51
## 1618 0.000 unconnected asymmetric 52
## 1619 0.000 unconnected asymmetric 53
## 1620 0.000 unconnected asymmetric 56
## 1621 0.000 unconnected asymmetric 65
## 1622 0.000 unconnected asymmetric 68
## 1623 0.000 unconnected asymmetric 69
## 1624 0.000 unconnected asymmetric 70
## 1625 0.000 unconnected asymmetric 91
## 1626 0.000 unconnected asymmetric 92
## 1627 0.000 unconnected asymmetric 93
## 1628 0.000 unconnected asymmetric 96
## 1629 0.000 unconnected asymmetric 105
## 1630 0.000 unconnected asymmetric 108
## 1631 0.000 unconnected asymmetric 109
## 1632 0.000 unconnected asymmetric 110
## 1633 0.000 unconnected asymmetric 11
## 1634 0.000 unconnected asymmetric 12
## 1635 0.000 unconnected asymmetric 13
## 1636 0.000 unconnected asymmetric 16
## 1637 0.000 unconnected asymmetric 25
## 1638 0.000 unconnected asymmetric 28
## 1639 0.000 unconnected asymmetric 29
## 1640 0.000 unconnected asymmetric 30
## 1641 0.000 unconnected asymmetric 51
## 1642 0.000 unconnected asymmetric 52
## 1643 0.000 unconnected asymmetric 53
## 1644 0.000 unconnected asymmetric 56
## 1645 0.000 unconnected asymmetric 65
## 1646 0.000 unconnected asymmetric 68
## 1647 0.000 unconnected asymmetric 69
## 1648 0.000 unconnected asymmetric 70
## 1649 0.000 unconnected asymmetric 91
## 1650 0.000 unconnected asymmetric 92
## 1651 0.000 unconnected asymmetric 93
## 1652 0.000 unconnected asymmetric 96
## 1653 0.000 unconnected asymmetric 105
## 1654 0.000 unconnected asymmetric 108
## 1655 0.000 unconnected asymmetric 109
## 1656 0.000 unconnected asymmetric 110
## 1657 0.000 unconnected asymmetric 11
## 1658 0.000 unconnected asymmetric 12
## 1659 0.000 unconnected asymmetric 13
## 1660 0.000 unconnected asymmetric 16
## 1661 0.000 unconnected asymmetric 25
## 1662 0.000 unconnected asymmetric 28
## 1663 0.000 unconnected asymmetric 29
## 1664 0.000 unconnected asymmetric 30
## 1665 0.000 unconnected asymmetric 51
## 1666 0.000 unconnected asymmetric 52
## 1667 0.000 unconnected asymmetric 53
## 1668 0.000 unconnected asymmetric 56
## 1669 0.000 unconnected asymmetric 65
## 1670 0.000 unconnected asymmetric 68
## 1671 0.000 unconnected asymmetric 69
## 1672 0.000 unconnected asymmetric 70
## 1673 0.000 unconnected asymmetric 91
## 1674 0.000 unconnected asymmetric 92
## 1675 0.000 unconnected asymmetric 93
## 1676 0.000 unconnected asymmetric 96
## 1677 0.000 unconnected asymmetric 105
## 1678 0.000 unconnected asymmetric 108
## 1679 0.000 unconnected asymmetric 109
## 1680 0.000 unconnected asymmetric 110
## 1681 0.000 unconnected asymmetric 11
## 1682 0.000 unconnected asymmetric 12
## 1683 0.000 unconnected asymmetric 13
## 1684 0.000 unconnected asymmetric 16
## 1685 0.000 unconnected asymmetric 25
## 1686 0.000 unconnected asymmetric 28
## 1687 0.000 unconnected asymmetric 29
## 1688 0.000 unconnected asymmetric 30
## 1689 0.000 unconnected asymmetric 51
## 1690 0.000 unconnected asymmetric 52
## 1691 0.000 unconnected asymmetric 53
## 1692 0.000 unconnected asymmetric 56
## 1693 0.000 unconnected asymmetric 65
## 1694 0.000 unconnected asymmetric 68
## 1695 0.000 unconnected asymmetric 69
## 1696 0.000 unconnected asymmetric 70
## 1697 0.000 unconnected asymmetric 91
## 1698 0.000 unconnected asymmetric 92
## 1699 0.000 unconnected asymmetric 93
## 1700 0.000 unconnected asymmetric 96
## 1701 0.000 unconnected asymmetric 105
## 1702 0.000 unconnected asymmetric 108
## 1703 0.000 unconnected asymmetric 109
## 1704 0.000 unconnected asymmetric 110
## 1705 0.000 unconnected asymmetric 11
## 1706 0.000 unconnected asymmetric 12
## 1707 0.000 unconnected asymmetric 13
## 1708 0.000 unconnected asymmetric 16
## 1709 0.000 unconnected asymmetric 25
## 1710 0.000 unconnected asymmetric 28
## 1711 0.000 unconnected asymmetric 29
## 1712 0.000 unconnected asymmetric 30
## 1713 0.000 unconnected asymmetric 51
## 1714 0.000 unconnected asymmetric 52
## 1715 0.000 unconnected asymmetric 53
## 1716 0.000 unconnected asymmetric 56
## 1717 0.000 unconnected asymmetric 65
## 1718 0.000 unconnected asymmetric 68
## 1719 0.000 unconnected asymmetric 69
## 1720 0.000 unconnected asymmetric 70
## 1721 0.000 unconnected asymmetric 91
## 1722 0.000 unconnected asymmetric 92
## 1723 0.000 unconnected asymmetric 93
## 1724 0.000 unconnected asymmetric 96
## 1725 0.000 unconnected asymmetric 105
## 1726 0.000 unconnected asymmetric 108
## 1727 0.000 unconnected asymmetric 109
## 1728 0.000 unconnected asymmetric 110
## 1729 2243.895 unconnected asymmetric 4
## 1730 2243.895 unconnected asymmetric 7
## 1731 2243.895 unconnected asymmetric 14
## 1732 2243.895 unconnected asymmetric 17
## 1733 2243.895 unconnected asymmetric 24
## 1734 2243.895 unconnected asymmetric 27
## 1735 2243.895 unconnected asymmetric 34
## 1736 2243.895 unconnected asymmetric 37
## 1737 2243.895 unconnected asymmetric 44
## 1738 2243.895 unconnected asymmetric 47
## 1739 2243.895 unconnected asymmetric 54
## 1740 2243.895 unconnected asymmetric 57
## 1741 2243.895 unconnected asymmetric 64
## 1742 2243.895 unconnected asymmetric 67
## 1743 2243.895 unconnected asymmetric 74
## 1744 2243.895 unconnected asymmetric 77
## 1745 2243.895 unconnected asymmetric 84
## 1746 2243.895 unconnected asymmetric 87
## 1747 2243.895 unconnected asymmetric 94
## 1748 2243.895 unconnected asymmetric 97
## 1749 2243.895 unconnected asymmetric 104
## 1750 2243.895 unconnected asymmetric 107
## 1751 2243.895 unconnected asymmetric 114
## 1752 2243.895 unconnected asymmetric 117
## 1753 0.000 unconnected asymmetric 4
## 1754 0.000 unconnected asymmetric 7
## 1755 0.000 unconnected asymmetric 14
## 1756 0.000 unconnected asymmetric 17
## 1757 0.000 unconnected asymmetric 24
## 1758 0.000 unconnected asymmetric 27
## 1759 0.000 unconnected asymmetric 34
## 1760 0.000 unconnected asymmetric 37
## 1761 0.000 unconnected asymmetric 44
## 1762 0.000 unconnected asymmetric 47
## 1763 0.000 unconnected asymmetric 54
## 1764 0.000 unconnected asymmetric 57
## 1765 0.000 unconnected asymmetric 64
## 1766 0.000 unconnected asymmetric 67
## 1767 0.000 unconnected asymmetric 74
## 1768 0.000 unconnected asymmetric 77
## 1769 0.000 unconnected asymmetric 84
## 1770 0.000 unconnected asymmetric 87
## 1771 0.000 unconnected asymmetric 94
## 1772 0.000 unconnected asymmetric 97
## 1773 0.000 unconnected asymmetric 104
## 1774 0.000 unconnected asymmetric 107
## 1775 0.000 unconnected asymmetric 114
## 1776 0.000 unconnected asymmetric 117
## 1777 0.000 unconnected asymmetric 4
## 1778 0.000 unconnected asymmetric 7
## 1779 0.000 unconnected asymmetric 14
## 1780 0.000 unconnected asymmetric 17
## 1781 0.000 unconnected asymmetric 24
## 1782 0.000 unconnected asymmetric 27
## 1783 0.000 unconnected asymmetric 34
## 1784 0.000 unconnected asymmetric 37
## 1785 0.000 unconnected asymmetric 44
## 1786 0.000 unconnected asymmetric 47
## 1787 0.000 unconnected asymmetric 54
## 1788 0.000 unconnected asymmetric 57
## 1789 0.000 unconnected asymmetric 64
## 1790 0.000 unconnected asymmetric 67
## 1791 0.000 unconnected asymmetric 74
## 1792 0.000 unconnected asymmetric 77
## 1793 0.000 unconnected asymmetric 84
## 1794 0.000 unconnected asymmetric 87
## 1795 0.000 unconnected asymmetric 94
## 1796 0.000 unconnected asymmetric 97
## 1797 0.000 unconnected asymmetric 104
## 1798 0.000 unconnected asymmetric 107
## 1799 0.000 unconnected asymmetric 114
## 1800 0.000 unconnected asymmetric 117
## 1801 0.000 unconnected asymmetric 4
## 1802 0.000 unconnected asymmetric 7
## 1803 0.000 unconnected asymmetric 14
## 1804 0.000 unconnected asymmetric 17
## 1805 0.000 unconnected asymmetric 24
## 1806 0.000 unconnected asymmetric 27
## 1807 0.000 unconnected asymmetric 34
## 1808 0.000 unconnected asymmetric 37
## 1809 0.000 unconnected asymmetric 44
## 1810 0.000 unconnected asymmetric 47
## 1811 0.000 unconnected asymmetric 54
## 1812 0.000 unconnected asymmetric 57
## 1813 0.000 unconnected asymmetric 64
## 1814 0.000 unconnected asymmetric 67
## 1815 0.000 unconnected asymmetric 74
## 1816 0.000 unconnected asymmetric 77
## 1817 0.000 unconnected asymmetric 84
## 1818 0.000 unconnected asymmetric 87
## 1819 0.000 unconnected asymmetric 94
## 1820 0.000 unconnected asymmetric 97
## 1821 0.000 unconnected asymmetric 104
## 1822 0.000 unconnected asymmetric 107
## 1823 0.000 unconnected asymmetric 114
## 1824 0.000 unconnected asymmetric 117
## 1825 0.000 unconnected asymmetric 4
## 1826 0.000 unconnected asymmetric 7
## 1827 0.000 unconnected asymmetric 14
## 1828 0.000 unconnected asymmetric 17
## 1829 0.000 unconnected asymmetric 24
## 1830 0.000 unconnected asymmetric 27
## 1831 0.000 unconnected asymmetric 34
## 1832 0.000 unconnected asymmetric 37
## 1833 0.000 unconnected asymmetric 44
## 1834 0.000 unconnected asymmetric 47
## 1835 0.000 unconnected asymmetric 54
## 1836 0.000 unconnected asymmetric 57
## 1837 0.000 unconnected asymmetric 64
## 1838 0.000 unconnected asymmetric 67
## 1839 0.000 unconnected asymmetric 74
## 1840 0.000 unconnected asymmetric 77
## 1841 0.000 unconnected asymmetric 84
## 1842 0.000 unconnected asymmetric 87
## 1843 0.000 unconnected asymmetric 94
## 1844 0.000 unconnected asymmetric 97
## 1845 0.000 unconnected asymmetric 104
## 1846 0.000 unconnected asymmetric 107
## 1847 0.000 unconnected asymmetric 114
## 1848 0.000 unconnected asymmetric 117
## 1849 0.000 unconnected asymmetric 4
## 1850 0.000 unconnected asymmetric 7
## 1851 0.000 unconnected asymmetric 14
## 1852 0.000 unconnected asymmetric 17
## 1853 0.000 unconnected asymmetric 24
## 1854 0.000 unconnected asymmetric 27
## 1855 0.000 unconnected asymmetric 34
## 1856 0.000 unconnected asymmetric 37
## 1857 0.000 unconnected asymmetric 44
## 1858 0.000 unconnected asymmetric 47
## 1859 0.000 unconnected asymmetric 54
## 1860 0.000 unconnected asymmetric 57
## 1861 0.000 unconnected asymmetric 64
## 1862 0.000 unconnected asymmetric 67
## 1863 0.000 unconnected asymmetric 74
## 1864 0.000 unconnected asymmetric 77
## 1865 0.000 unconnected asymmetric 84
## 1866 0.000 unconnected asymmetric 87
## 1867 0.000 unconnected asymmetric 94
## 1868 0.000 unconnected asymmetric 97
## 1869 0.000 unconnected asymmetric 104
## 1870 0.000 unconnected asymmetric 107
## 1871 0.000 unconnected asymmetric 114
## 1872 0.000 unconnected asymmetric 117
## 1873 0.000 unconnected asymmetric 4
## 1874 0.000 unconnected asymmetric 7
## 1875 0.000 unconnected asymmetric 14
## 1876 0.000 unconnected asymmetric 17
## 1877 0.000 unconnected asymmetric 24
## 1878 0.000 unconnected asymmetric 27
## 1879 0.000 unconnected asymmetric 34
## 1880 0.000 unconnected asymmetric 37
## 1881 0.000 unconnected asymmetric 44
## 1882 0.000 unconnected asymmetric 47
## 1883 0.000 unconnected asymmetric 54
## 1884 0.000 unconnected asymmetric 57
## 1885 0.000 unconnected asymmetric 64
## 1886 0.000 unconnected asymmetric 67
## 1887 0.000 unconnected asymmetric 74
## 1888 0.000 unconnected asymmetric 77
## 1889 0.000 unconnected asymmetric 84
## 1890 0.000 unconnected asymmetric 87
## 1891 0.000 unconnected asymmetric 94
## 1892 0.000 unconnected asymmetric 97
## 1893 0.000 unconnected asymmetric 104
## 1894 0.000 unconnected asymmetric 107
## 1895 0.000 unconnected asymmetric 114
## 1896 0.000 unconnected asymmetric 117
## 1897 0.000 unconnected asymmetric 4
## 1898 0.000 unconnected asymmetric 7
## 1899 0.000 unconnected asymmetric 14
## 1900 0.000 unconnected asymmetric 17
## 1901 0.000 unconnected asymmetric 24
## 1902 0.000 unconnected asymmetric 27
## 1903 0.000 unconnected asymmetric 34
## 1904 0.000 unconnected asymmetric 37
## 1905 0.000 unconnected asymmetric 44
## 1906 0.000 unconnected asymmetric 47
## 1907 0.000 unconnected asymmetric 54
## 1908 0.000 unconnected asymmetric 57
## 1909 0.000 unconnected asymmetric 64
## 1910 0.000 unconnected asymmetric 67
## 1911 0.000 unconnected asymmetric 74
## 1912 0.000 unconnected asymmetric 77
## 1913 0.000 unconnected asymmetric 84
## 1914 0.000 unconnected asymmetric 87
## 1915 0.000 unconnected asymmetric 94
## 1916 0.000 unconnected asymmetric 97
## 1917 0.000 unconnected asymmetric 104
## 1918 0.000 unconnected asymmetric 107
## 1919 0.000 unconnected asymmetric 114
## 1920 0.000 unconnected asymmetric 117
## 1921 2243.895 unconnected asymmetric 16
## 1922 2243.895 unconnected asymmetric 17
## 1923 2243.895 unconnected asymmetric 24
## 1924 2243.895 unconnected asymmetric 25
## 1925 2243.895 unconnected asymmetric 44
## 1926 2243.895 unconnected asymmetric 45
## 1927 2243.895 unconnected asymmetric 46
## 1928 2243.895 unconnected asymmetric 47
## 1929 2243.895 unconnected asymmetric 51
## 1930 2243.895 unconnected asymmetric 52
## 1931 2243.895 unconnected asymmetric 59
## 1932 2243.895 unconnected asymmetric 60
## 1933 2243.895 unconnected asymmetric 79
## 1934 2243.895 unconnected asymmetric 80
## 1935 2243.895 unconnected asymmetric 81
## 1936 2243.895 unconnected asymmetric 82
## 1937 2243.895 unconnected asymmetric 101
## 1938 2243.895 unconnected asymmetric 102
## 1939 2243.895 unconnected asymmetric 109
## 1940 2243.895 unconnected asymmetric 110
## 1941 2243.895 unconnected asymmetric 114
## 1942 2243.895 unconnected asymmetric 115
## 1943 2243.895 unconnected asymmetric 116
## 1944 2243.895 unconnected asymmetric 117
## 1945 0.000 unconnected asymmetric 16
## 1946 0.000 unconnected asymmetric 17
## 1947 0.000 unconnected asymmetric 24
## 1948 0.000 unconnected asymmetric 25
## 1949 0.000 unconnected asymmetric 44
## 1950 0.000 unconnected asymmetric 45
## 1951 0.000 unconnected asymmetric 46
## 1952 0.000 unconnected asymmetric 47
## 1953 0.000 unconnected asymmetric 51
## 1954 0.000 unconnected asymmetric 52
## 1955 0.000 unconnected asymmetric 59
## 1956 0.000 unconnected asymmetric 60
## 1957 0.000 unconnected asymmetric 79
## 1958 0.000 unconnected asymmetric 80
## 1959 0.000 unconnected asymmetric 81
## 1960 0.000 unconnected asymmetric 82
## 1961 0.000 unconnected asymmetric 101
## 1962 0.000 unconnected asymmetric 102
## 1963 0.000 unconnected asymmetric 109
## 1964 0.000 unconnected asymmetric 110
## 1965 0.000 unconnected asymmetric 114
## 1966 0.000 unconnected asymmetric 115
## 1967 0.000 unconnected asymmetric 116
## 1968 0.000 unconnected asymmetric 117
## 1969 0.000 unconnected asymmetric 16
## 1970 0.000 unconnected asymmetric 17
## 1971 0.000 unconnected asymmetric 24
## 1972 0.000 unconnected asymmetric 25
## 1973 0.000 unconnected asymmetric 44
## 1974 0.000 unconnected asymmetric 45
## 1975 0.000 unconnected asymmetric 46
## 1976 0.000 unconnected asymmetric 47
## 1977 0.000 unconnected asymmetric 51
## 1978 0.000 unconnected asymmetric 52
## 1979 0.000 unconnected asymmetric 59
## 1980 0.000 unconnected asymmetric 60
## 1981 0.000 unconnected asymmetric 79
## 1982 0.000 unconnected asymmetric 80
## 1983 0.000 unconnected asymmetric 81
## 1984 0.000 unconnected asymmetric 82
## 1985 0.000 unconnected asymmetric 101
## 1986 0.000 unconnected asymmetric 102
## 1987 0.000 unconnected asymmetric 109
## 1988 0.000 unconnected asymmetric 110
## 1989 0.000 unconnected asymmetric 114
## 1990 0.000 unconnected asymmetric 115
## 1991 0.000 unconnected asymmetric 116
## 1992 0.000 unconnected asymmetric 117
## 1993 0.000 unconnected asymmetric 16
## 1994 0.000 unconnected asymmetric 17
## 1995 0.000 unconnected asymmetric 24
## 1996 0.000 unconnected asymmetric 25
## 1997 0.000 unconnected asymmetric 44
## 1998 0.000 unconnected asymmetric 45
## 1999 0.000 unconnected asymmetric 46
## 2000 0.000 unconnected asymmetric 47
## 2001 0.000 unconnected asymmetric 51
## 2002 0.000 unconnected asymmetric 52
## 2003 0.000 unconnected asymmetric 59
## 2004 0.000 unconnected asymmetric 60
## 2005 0.000 unconnected asymmetric 79
## 2006 0.000 unconnected asymmetric 80
## 2007 0.000 unconnected asymmetric 81
## 2008 0.000 unconnected asymmetric 82
## 2009 0.000 unconnected asymmetric 101
## 2010 0.000 unconnected asymmetric 102
## 2011 0.000 unconnected asymmetric 109
## 2012 0.000 unconnected asymmetric 110
## 2013 0.000 unconnected asymmetric 114
## 2014 0.000 unconnected asymmetric 115
## 2015 0.000 unconnected asymmetric 116
## 2016 0.000 unconnected asymmetric 117
## 2017 0.000 unconnected asymmetric 16
## 2018 0.000 unconnected asymmetric 17
## 2019 0.000 unconnected asymmetric 24
## 2020 0.000 unconnected asymmetric 25
## 2021 0.000 unconnected asymmetric 44
## 2022 0.000 unconnected asymmetric 45
## 2023 0.000 unconnected asymmetric 46
## 2024 0.000 unconnected asymmetric 47
## 2025 0.000 unconnected asymmetric 51
## 2026 0.000 unconnected asymmetric 52
## 2027 0.000 unconnected asymmetric 59
## 2028 0.000 unconnected asymmetric 60
## 2029 0.000 unconnected asymmetric 79
## 2030 0.000 unconnected asymmetric 80
## 2031 0.000 unconnected asymmetric 81
## 2032 0.000 unconnected asymmetric 82
## 2033 0.000 unconnected asymmetric 101
## 2034 0.000 unconnected asymmetric 102
## 2035 0.000 unconnected asymmetric 109
## 2036 0.000 unconnected asymmetric 110
## 2037 0.000 unconnected asymmetric 114
## 2038 0.000 unconnected asymmetric 115
## 2039 0.000 unconnected asymmetric 116
## 2040 0.000 unconnected asymmetric 117
## 2041 0.000 unconnected asymmetric 16
## 2042 0.000 unconnected asymmetric 17
## 2043 0.000 unconnected asymmetric 24
## 2044 0.000 unconnected asymmetric 25
## 2045 0.000 unconnected asymmetric 44
## 2046 0.000 unconnected asymmetric 45
## 2047 0.000 unconnected asymmetric 46
## 2048 0.000 unconnected asymmetric 47
## 2049 0.000 unconnected asymmetric 51
## 2050 0.000 unconnected asymmetric 52
## 2051 0.000 unconnected asymmetric 59
## 2052 0.000 unconnected asymmetric 60
## 2053 0.000 unconnected asymmetric 79
## 2054 0.000 unconnected asymmetric 80
## 2055 0.000 unconnected asymmetric 81
## 2056 0.000 unconnected asymmetric 82
## 2057 0.000 unconnected asymmetric 101
## 2058 0.000 unconnected asymmetric 102
## 2059 0.000 unconnected asymmetric 109
## 2060 0.000 unconnected asymmetric 110
## 2061 0.000 unconnected asymmetric 114
## 2062 0.000 unconnected asymmetric 115
## 2063 0.000 unconnected asymmetric 116
## 2064 0.000 unconnected asymmetric 117
## 2065 0.000 unconnected asymmetric 16
## 2066 0.000 unconnected asymmetric 17
## 2067 0.000 unconnected asymmetric 24
## 2068 0.000 unconnected asymmetric 25
## 2069 0.000 unconnected asymmetric 44
## 2070 0.000 unconnected asymmetric 45
## 2071 0.000 unconnected asymmetric 46
## 2072 0.000 unconnected asymmetric 47
## 2073 0.000 unconnected asymmetric 51
## 2074 0.000 unconnected asymmetric 52
## 2075 0.000 unconnected asymmetric 59
## 2076 0.000 unconnected asymmetric 60
## 2077 0.000 unconnected asymmetric 79
## 2078 0.000 unconnected asymmetric 80
## 2079 0.000 unconnected asymmetric 81
## 2080 0.000 unconnected asymmetric 82
## 2081 0.000 unconnected asymmetric 101
## 2082 0.000 unconnected asymmetric 102
## 2083 0.000 unconnected asymmetric 109
## 2084 0.000 unconnected asymmetric 110
## 2085 0.000 unconnected asymmetric 114
## 2086 0.000 unconnected asymmetric 115
## 2087 0.000 unconnected asymmetric 116
## 2088 0.000 unconnected asymmetric 117
## 2089 0.000 unconnected asymmetric 16
## 2090 0.000 unconnected asymmetric 17
## 2091 0.000 unconnected asymmetric 24
## 2092 0.000 unconnected asymmetric 25
## 2093 0.000 unconnected asymmetric 44
## 2094 0.000 unconnected asymmetric 45
## 2095 0.000 unconnected asymmetric 46
## 2096 0.000 unconnected asymmetric 47
## 2097 0.000 unconnected asymmetric 51
## 2098 0.000 unconnected asymmetric 52
## 2099 0.000 unconnected asymmetric 59
## 2100 0.000 unconnected asymmetric 60
## 2101 0.000 unconnected asymmetric 79
## 2102 0.000 unconnected asymmetric 80
## 2103 0.000 unconnected asymmetric 81
## 2104 0.000 unconnected asymmetric 82
## 2105 0.000 unconnected asymmetric 101
## 2106 0.000 unconnected asymmetric 102
## 2107 0.000 unconnected asymmetric 109
## 2108 0.000 unconnected asymmetric 110
## 2109 0.000 unconnected asymmetric 114
## 2110 0.000 unconnected asymmetric 115
## 2111 0.000 unconnected asymmetric 116
## 2112 0.000 unconnected asymmetric 117
## 2113 2243.895 unconnected asymmetric 4
## 2114 2243.895 unconnected asymmetric 5
## 2115 2243.895 unconnected asymmetric 6
## 2116 2243.895 unconnected asymmetric 7
## 2117 2243.895 unconnected asymmetric 11
## 2118 2243.895 unconnected asymmetric 12
## 2119 2243.895 unconnected asymmetric 19
## 2120 2243.895 unconnected asymmetric 20
## 2121 2243.895 unconnected asymmetric 39
## 2122 2243.895 unconnected asymmetric 40
## 2123 2243.895 unconnected asymmetric 41
## 2124 2243.895 unconnected asymmetric 42
## 2125 2243.895 unconnected asymmetric 61
## 2126 2243.895 unconnected asymmetric 62
## 2127 2243.895 unconnected asymmetric 69
## 2128 2243.895 unconnected asymmetric 70
## 2129 2243.895 unconnected asymmetric 74
## 2130 2243.895 unconnected asymmetric 75
## 2131 2243.895 unconnected asymmetric 76
## 2132 2243.895 unconnected asymmetric 77
## 2133 2243.895 unconnected asymmetric 96
## 2134 2243.895 unconnected asymmetric 97
## 2135 2243.895 unconnected asymmetric 104
## 2136 2243.895 unconnected asymmetric 105
## 2137 0.000 unconnected asymmetric 4
## 2138 0.000 unconnected asymmetric 5
## 2139 0.000 unconnected asymmetric 6
## 2140 0.000 unconnected asymmetric 7
## 2141 0.000 unconnected asymmetric 11
## 2142 0.000 unconnected asymmetric 12
## 2143 0.000 unconnected asymmetric 19
## 2144 0.000 unconnected asymmetric 20
## 2145 0.000 unconnected asymmetric 39
## 2146 0.000 unconnected asymmetric 40
## 2147 0.000 unconnected asymmetric 41
## 2148 0.000 unconnected asymmetric 42
## 2149 0.000 unconnected asymmetric 61
## 2150 0.000 unconnected asymmetric 62
## 2151 0.000 unconnected asymmetric 69
## 2152 0.000 unconnected asymmetric 70
## 2153 0.000 unconnected asymmetric 74
## 2154 0.000 unconnected asymmetric 75
## 2155 0.000 unconnected asymmetric 76
## 2156 0.000 unconnected asymmetric 77
## 2157 0.000 unconnected asymmetric 96
## 2158 0.000 unconnected asymmetric 97
## 2159 0.000 unconnected asymmetric 104
## 2160 0.000 unconnected asymmetric 105
## 2161 0.000 unconnected asymmetric 4
## 2162 0.000 unconnected asymmetric 5
## 2163 0.000 unconnected asymmetric 6
## 2164 0.000 unconnected asymmetric 7
## 2165 0.000 unconnected asymmetric 11
## 2166 0.000 unconnected asymmetric 12
## 2167 0.000 unconnected asymmetric 19
## 2168 0.000 unconnected asymmetric 20
## 2169 0.000 unconnected asymmetric 39
## 2170 0.000 unconnected asymmetric 40
## 2171 0.000 unconnected asymmetric 41
## 2172 0.000 unconnected asymmetric 42
## 2173 0.000 unconnected asymmetric 61
## 2174 0.000 unconnected asymmetric 62
## 2175 0.000 unconnected asymmetric 69
## 2176 0.000 unconnected asymmetric 70
## 2177 0.000 unconnected asymmetric 74
## 2178 0.000 unconnected asymmetric 75
## 2179 0.000 unconnected asymmetric 76
## 2180 0.000 unconnected asymmetric 77
## 2181 0.000 unconnected asymmetric 96
## 2182 0.000 unconnected asymmetric 97
## 2183 0.000 unconnected asymmetric 104
## 2184 0.000 unconnected asymmetric 105
## 2185 0.000 unconnected asymmetric 4
## 2186 0.000 unconnected asymmetric 5
## 2187 0.000 unconnected asymmetric 6
## 2188 0.000 unconnected asymmetric 7
## 2189 0.000 unconnected asymmetric 11
## 2190 0.000 unconnected asymmetric 12
## 2191 0.000 unconnected asymmetric 19
## 2192 0.000 unconnected asymmetric 20
## 2193 0.000 unconnected asymmetric 39
## 2194 0.000 unconnected asymmetric 40
## 2195 0.000 unconnected asymmetric 41
## 2196 0.000 unconnected asymmetric 42
## 2197 0.000 unconnected asymmetric 61
## 2198 0.000 unconnected asymmetric 62
## 2199 0.000 unconnected asymmetric 69
## 2200 0.000 unconnected asymmetric 70
## 2201 0.000 unconnected asymmetric 74
## 2202 0.000 unconnected asymmetric 75
## 2203 0.000 unconnected asymmetric 76
## 2204 0.000 unconnected asymmetric 77
## 2205 0.000 unconnected asymmetric 96
## 2206 0.000 unconnected asymmetric 97
## 2207 0.000 unconnected asymmetric 104
## 2208 0.000 unconnected asymmetric 105
## 2209 0.000 unconnected asymmetric 4
## 2210 0.000 unconnected asymmetric 5
## 2211 0.000 unconnected asymmetric 6
## 2212 0.000 unconnected asymmetric 7
## 2213 0.000 unconnected asymmetric 11
## 2214 0.000 unconnected asymmetric 12
## 2215 0.000 unconnected asymmetric 19
## 2216 0.000 unconnected asymmetric 20
## 2217 0.000 unconnected asymmetric 39
## 2218 0.000 unconnected asymmetric 40
## 2219 0.000 unconnected asymmetric 41
## 2220 0.000 unconnected asymmetric 42
## 2221 0.000 unconnected asymmetric 61
## 2222 0.000 unconnected asymmetric 62
## 2223 0.000 unconnected asymmetric 69
## 2224 0.000 unconnected asymmetric 70
## 2225 0.000 unconnected asymmetric 74
## 2226 0.000 unconnected asymmetric 75
## 2227 0.000 unconnected asymmetric 76
## 2228 0.000 unconnected asymmetric 77
## 2229 0.000 unconnected asymmetric 96
## 2230 0.000 unconnected asymmetric 97
## 2231 0.000 unconnected asymmetric 104
## 2232 0.000 unconnected asymmetric 105
## 2233 0.000 unconnected asymmetric 4
## 2234 0.000 unconnected asymmetric 5
## 2235 0.000 unconnected asymmetric 6
## 2236 0.000 unconnected asymmetric 7
## 2237 0.000 unconnected asymmetric 11
## 2238 0.000 unconnected asymmetric 12
## 2239 0.000 unconnected asymmetric 19
## 2240 0.000 unconnected asymmetric 20
## 2241 0.000 unconnected asymmetric 39
## 2242 0.000 unconnected asymmetric 40
## 2243 0.000 unconnected asymmetric 41
## 2244 0.000 unconnected asymmetric 42
## 2245 0.000 unconnected asymmetric 61
## 2246 0.000 unconnected asymmetric 62
## 2247 0.000 unconnected asymmetric 69
## 2248 0.000 unconnected asymmetric 70
## 2249 0.000 unconnected asymmetric 74
## 2250 0.000 unconnected asymmetric 75
## 2251 0.000 unconnected asymmetric 76
## 2252 0.000 unconnected asymmetric 77
## 2253 0.000 unconnected asymmetric 96
## 2254 0.000 unconnected asymmetric 97
## 2255 0.000 unconnected asymmetric 104
## 2256 0.000 unconnected asymmetric 105
## 2257 0.000 unconnected asymmetric 4
## 2258 0.000 unconnected asymmetric 5
## 2259 0.000 unconnected asymmetric 6
## 2260 0.000 unconnected asymmetric 7
## 2261 0.000 unconnected asymmetric 11
## 2262 0.000 unconnected asymmetric 12
## 2263 0.000 unconnected asymmetric 19
## 2264 0.000 unconnected asymmetric 20
## 2265 0.000 unconnected asymmetric 39
## 2266 0.000 unconnected asymmetric 40
## 2267 0.000 unconnected asymmetric 41
## 2268 0.000 unconnected asymmetric 42
## 2269 0.000 unconnected asymmetric 61
## 2270 0.000 unconnected asymmetric 62
## 2271 0.000 unconnected asymmetric 69
## 2272 0.000 unconnected asymmetric 70
## 2273 0.000 unconnected asymmetric 74
## 2274 0.000 unconnected asymmetric 75
## 2275 0.000 unconnected asymmetric 76
## 2276 0.000 unconnected asymmetric 77
## 2277 0.000 unconnected asymmetric 96
## 2278 0.000 unconnected asymmetric 97
## 2279 0.000 unconnected asymmetric 104
## 2280 0.000 unconnected asymmetric 105
## 2281 0.000 unconnected asymmetric 4
## 2282 0.000 unconnected asymmetric 5
## 2283 0.000 unconnected asymmetric 6
## 2284 0.000 unconnected asymmetric 7
## 2285 0.000 unconnected asymmetric 11
## 2286 0.000 unconnected asymmetric 12
## 2287 0.000 unconnected asymmetric 19
## 2288 0.000 unconnected asymmetric 20
## 2289 0.000 unconnected asymmetric 39
## 2290 0.000 unconnected asymmetric 40
## 2291 0.000 unconnected asymmetric 41
## 2292 0.000 unconnected asymmetric 42
## 2293 0.000 unconnected asymmetric 61
## 2294 0.000 unconnected asymmetric 62
## 2295 0.000 unconnected asymmetric 69
## 2296 0.000 unconnected asymmetric 70
## 2297 0.000 unconnected asymmetric 74
## 2298 0.000 unconnected asymmetric 75
## 2299 0.000 unconnected asymmetric 76
## 2300 0.000 unconnected asymmetric 77
## 2301 0.000 unconnected asymmetric 96
## 2302 0.000 unconnected asymmetric 97
## 2303 0.000 unconnected asymmetric 104
## 2304 0.000 unconnected asymmetric 105
## 2305 2243.895 unconnected asymmetric 1
## 2306 2243.895 unconnected asymmetric 2
## 2307 2243.895 unconnected asymmetric 21
## 2308 2243.895 unconnected asymmetric 22
## 2309 2243.895 unconnected asymmetric 29
## 2310 2243.895 unconnected asymmetric 30
## 2311 2243.895 unconnected asymmetric 34
## 2312 2243.895 unconnected asymmetric 35
## 2313 2243.895 unconnected asymmetric 36
## 2314 2243.895 unconnected asymmetric 37
## 2315 2243.895 unconnected asymmetric 56
## 2316 2243.895 unconnected asymmetric 57
## 2317 2243.895 unconnected asymmetric 64
## 2318 2243.895 unconnected asymmetric 65
## 2319 2243.895 unconnected asymmetric 84
## 2320 2243.895 unconnected asymmetric 85
## 2321 2243.895 unconnected asymmetric 86
## 2322 2243.895 unconnected asymmetric 87
## 2323 2243.895 unconnected asymmetric 91
## 2324 2243.895 unconnected asymmetric 92
## 2325 2243.895 unconnected asymmetric 99
## 2326 2243.895 unconnected asymmetric 100
## 2327 2243.895 unconnected asymmetric 119
## 2328 2243.895 unconnected asymmetric 120
## 2329 0.000 unconnected asymmetric 1
## 2330 0.000 unconnected asymmetric 2
## 2331 0.000 unconnected asymmetric 21
## 2332 0.000 unconnected asymmetric 22
## 2333 0.000 unconnected asymmetric 29
## 2334 0.000 unconnected asymmetric 30
## 2335 0.000 unconnected asymmetric 34
## 2336 0.000 unconnected asymmetric 35
## 2337 0.000 unconnected asymmetric 36
## 2338 0.000 unconnected asymmetric 37
## 2339 0.000 unconnected asymmetric 56
## 2340 0.000 unconnected asymmetric 57
## 2341 0.000 unconnected asymmetric 64
## 2342 0.000 unconnected asymmetric 65
## 2343 0.000 unconnected asymmetric 84
## 2344 0.000 unconnected asymmetric 85
## 2345 0.000 unconnected asymmetric 86
## 2346 0.000 unconnected asymmetric 87
## 2347 0.000 unconnected asymmetric 91
## 2348 0.000 unconnected asymmetric 92
## 2349 0.000 unconnected asymmetric 99
## 2350 0.000 unconnected asymmetric 100
## 2351 0.000 unconnected asymmetric 119
## 2352 0.000 unconnected asymmetric 120
## 2353 0.000 unconnected asymmetric 1
## 2354 0.000 unconnected asymmetric 2
## 2355 0.000 unconnected asymmetric 21
## 2356 0.000 unconnected asymmetric 22
## 2357 0.000 unconnected asymmetric 29
## 2358 0.000 unconnected asymmetric 30
## 2359 0.000 unconnected asymmetric 34
## 2360 0.000 unconnected asymmetric 35
## 2361 0.000 unconnected asymmetric 36
## 2362 0.000 unconnected asymmetric 37
## 2363 0.000 unconnected asymmetric 56
## 2364 0.000 unconnected asymmetric 57
## 2365 0.000 unconnected asymmetric 64
## 2366 0.000 unconnected asymmetric 65
## 2367 0.000 unconnected asymmetric 84
## 2368 0.000 unconnected asymmetric 85
## 2369 0.000 unconnected asymmetric 86
## 2370 0.000 unconnected asymmetric 87
## 2371 0.000 unconnected asymmetric 91
## 2372 0.000 unconnected asymmetric 92
## 2373 0.000 unconnected asymmetric 99
## 2374 0.000 unconnected asymmetric 100
## 2375 0.000 unconnected asymmetric 119
## 2376 0.000 unconnected asymmetric 120
## 2377 0.000 unconnected asymmetric 1
## 2378 0.000 unconnected asymmetric 2
## 2379 0.000 unconnected asymmetric 21
## 2380 0.000 unconnected asymmetric 22
## 2381 0.000 unconnected asymmetric 29
## 2382 0.000 unconnected asymmetric 30
## 2383 0.000 unconnected asymmetric 34
## 2384 0.000 unconnected asymmetric 35
## 2385 0.000 unconnected asymmetric 36
## 2386 0.000 unconnected asymmetric 37
## 2387 0.000 unconnected asymmetric 56
## 2388 0.000 unconnected asymmetric 57
## 2389 0.000 unconnected asymmetric 64
## 2390 0.000 unconnected asymmetric 65
## 2391 0.000 unconnected asymmetric 84
## 2392 0.000 unconnected asymmetric 85
## 2393 0.000 unconnected asymmetric 86
## 2394 0.000 unconnected asymmetric 87
## 2395 0.000 unconnected asymmetric 91
## 2396 0.000 unconnected asymmetric 92
## 2397 0.000 unconnected asymmetric 99
## 2398 0.000 unconnected asymmetric 100
## 2399 0.000 unconnected asymmetric 119
## 2400 0.000 unconnected asymmetric 120
## 2401 0.000 unconnected asymmetric 1
## 2402 0.000 unconnected asymmetric 2
## 2403 0.000 unconnected asymmetric 21
## 2404 0.000 unconnected asymmetric 22
## 2405 0.000 unconnected asymmetric 29
## 2406 0.000 unconnected asymmetric 30
## 2407 0.000 unconnected asymmetric 34
## 2408 0.000 unconnected asymmetric 35
## 2409 0.000 unconnected asymmetric 36
## 2410 0.000 unconnected asymmetric 37
## 2411 0.000 unconnected asymmetric 56
## 2412 0.000 unconnected asymmetric 57
## 2413 0.000 unconnected asymmetric 64
## 2414 0.000 unconnected asymmetric 65
## 2415 0.000 unconnected asymmetric 84
## 2416 0.000 unconnected asymmetric 85
## 2417 0.000 unconnected asymmetric 86
## 2418 0.000 unconnected asymmetric 87
## 2419 0.000 unconnected asymmetric 91
## 2420 0.000 unconnected asymmetric 92
## 2421 0.000 unconnected asymmetric 99
## 2422 0.000 unconnected asymmetric 100
## 2423 0.000 unconnected asymmetric 119
## 2424 0.000 unconnected asymmetric 120
## 2425 0.000 unconnected asymmetric 1
## 2426 0.000 unconnected asymmetric 2
## 2427 0.000 unconnected asymmetric 21
## 2428 0.000 unconnected asymmetric 22
## 2429 0.000 unconnected asymmetric 29
## 2430 0.000 unconnected asymmetric 30
## 2431 0.000 unconnected asymmetric 34
## 2432 0.000 unconnected asymmetric 35
## 2433 0.000 unconnected asymmetric 36
## 2434 0.000 unconnected asymmetric 37
## 2435 0.000 unconnected asymmetric 56
## 2436 0.000 unconnected asymmetric 57
## 2437 0.000 unconnected asymmetric 64
## 2438 0.000 unconnected asymmetric 65
## 2439 0.000 unconnected asymmetric 84
## 2440 0.000 unconnected asymmetric 85
## 2441 0.000 unconnected asymmetric 86
## 2442 0.000 unconnected asymmetric 87
## 2443 0.000 unconnected asymmetric 91
## 2444 0.000 unconnected asymmetric 92
## 2445 0.000 unconnected asymmetric 99
## 2446 0.000 unconnected asymmetric 100
## 2447 0.000 unconnected asymmetric 119
## 2448 0.000 unconnected asymmetric 120
## 2449 0.000 unconnected asymmetric 1
## 2450 0.000 unconnected asymmetric 2
## 2451 0.000 unconnected asymmetric 21
## 2452 0.000 unconnected asymmetric 22
## 2453 0.000 unconnected asymmetric 29
## 2454 0.000 unconnected asymmetric 30
## 2455 0.000 unconnected asymmetric 34
## 2456 0.000 unconnected asymmetric 35
## 2457 0.000 unconnected asymmetric 36
## 2458 0.000 unconnected asymmetric 37
## 2459 0.000 unconnected asymmetric 56
## 2460 0.000 unconnected asymmetric 57
## 2461 0.000 unconnected asymmetric 64
## 2462 0.000 unconnected asymmetric 65
## 2463 0.000 unconnected asymmetric 84
## 2464 0.000 unconnected asymmetric 85
## 2465 0.000 unconnected asymmetric 86
## 2466 0.000 unconnected asymmetric 87
## 2467 0.000 unconnected asymmetric 91
## 2468 0.000 unconnected asymmetric 92
## 2469 0.000 unconnected asymmetric 99
## 2470 0.000 unconnected asymmetric 100
## 2471 0.000 unconnected asymmetric 119
## 2472 0.000 unconnected asymmetric 120
## 2473 0.000 unconnected asymmetric 1
## 2474 0.000 unconnected asymmetric 2
## 2475 0.000 unconnected asymmetric 21
## 2476 0.000 unconnected asymmetric 22
## 2477 0.000 unconnected asymmetric 29
## 2478 0.000 unconnected asymmetric 30
## 2479 0.000 unconnected asymmetric 34
## 2480 0.000 unconnected asymmetric 35
## 2481 0.000 unconnected asymmetric 36
## 2482 0.000 unconnected asymmetric 37
## 2483 0.000 unconnected asymmetric 56
## 2484 0.000 unconnected asymmetric 57
## 2485 0.000 unconnected asymmetric 64
## 2486 0.000 unconnected asymmetric 65
## 2487 0.000 unconnected asymmetric 84
## 2488 0.000 unconnected asymmetric 85
## 2489 0.000 unconnected asymmetric 86
## 2490 0.000 unconnected asymmetric 87
## 2491 0.000 unconnected asymmetric 91
## 2492 0.000 unconnected asymmetric 92
## 2493 0.000 unconnected asymmetric 99
## 2494 0.000 unconnected asymmetric 100
## 2495 0.000 unconnected asymmetric 119
## 2496 0.000 unconnected asymmetric 120
## 2497 2243.895 unconnected asymmetric 9
## 2498 2243.895 unconnected asymmetric 10
## 2499 2243.895 unconnected asymmetric 14
## 2500 2243.895 unconnected asymmetric 15
## 2501 2243.895 unconnected asymmetric 26
## 2502 2243.895 unconnected asymmetric 27
## 2503 2243.895 unconnected asymmetric 31
## 2504 2243.895 unconnected asymmetric 32
## 2505 2243.895 unconnected asymmetric 49
## 2506 2243.895 unconnected asymmetric 50
## 2507 2243.895 unconnected asymmetric 54
## 2508 2243.895 unconnected asymmetric 55
## 2509 2243.895 unconnected asymmetric 66
## 2510 2243.895 unconnected asymmetric 67
## 2511 2243.895 unconnected asymmetric 71
## 2512 2243.895 unconnected asymmetric 72
## 2513 2243.895 unconnected asymmetric 89
## 2514 2243.895 unconnected asymmetric 90
## 2515 2243.895 unconnected asymmetric 94
## 2516 2243.895 unconnected asymmetric 95
## 2517 2243.895 unconnected asymmetric 106
## 2518 2243.895 unconnected asymmetric 107
## 2519 2243.895 unconnected asymmetric 111
## 2520 2243.895 unconnected asymmetric 112
## 2521 0.000 unconnected asymmetric 9
## 2522 0.000 unconnected asymmetric 10
## 2523 0.000 unconnected asymmetric 14
## 2524 0.000 unconnected asymmetric 15
## 2525 0.000 unconnected asymmetric 26
## 2526 0.000 unconnected asymmetric 27
## 2527 0.000 unconnected asymmetric 31
## 2528 0.000 unconnected asymmetric 32
## 2529 0.000 unconnected asymmetric 49
## 2530 0.000 unconnected asymmetric 50
## 2531 0.000 unconnected asymmetric 54
## 2532 0.000 unconnected asymmetric 55
## 2533 0.000 unconnected asymmetric 66
## 2534 0.000 unconnected asymmetric 67
## 2535 0.000 unconnected asymmetric 71
## 2536 0.000 unconnected asymmetric 72
## 2537 0.000 unconnected asymmetric 89
## 2538 0.000 unconnected asymmetric 90
## 2539 0.000 unconnected asymmetric 94
## 2540 0.000 unconnected asymmetric 95
## 2541 0.000 unconnected asymmetric 106
## 2542 0.000 unconnected asymmetric 107
## 2543 0.000 unconnected asymmetric 111
## 2544 0.000 unconnected asymmetric 112
## 2545 0.000 unconnected asymmetric 9
## 2546 0.000 unconnected asymmetric 10
## 2547 0.000 unconnected asymmetric 14
## 2548 0.000 unconnected asymmetric 15
## 2549 0.000 unconnected asymmetric 26
## 2550 0.000 unconnected asymmetric 27
## 2551 0.000 unconnected asymmetric 31
## 2552 0.000 unconnected asymmetric 32
## 2553 0.000 unconnected asymmetric 49
## 2554 0.000 unconnected asymmetric 50
## 2555 0.000 unconnected asymmetric 54
## 2556 0.000 unconnected asymmetric 55
## 2557 0.000 unconnected asymmetric 66
## 2558 0.000 unconnected asymmetric 67
## 2559 0.000 unconnected asymmetric 71
## 2560 0.000 unconnected asymmetric 72
## 2561 0.000 unconnected asymmetric 89
## 2562 0.000 unconnected asymmetric 90
## 2563 0.000 unconnected asymmetric 94
## 2564 0.000 unconnected asymmetric 95
## 2565 0.000 unconnected asymmetric 106
## 2566 0.000 unconnected asymmetric 107
## 2567 0.000 unconnected asymmetric 111
## 2568 0.000 unconnected asymmetric 112
## 2569 0.000 unconnected asymmetric 9
## 2570 0.000 unconnected asymmetric 10
## 2571 0.000 unconnected asymmetric 14
## 2572 0.000 unconnected asymmetric 15
## 2573 0.000 unconnected asymmetric 26
## 2574 0.000 unconnected asymmetric 27
## 2575 0.000 unconnected asymmetric 31
## 2576 0.000 unconnected asymmetric 32
## 2577 0.000 unconnected asymmetric 49
## 2578 0.000 unconnected asymmetric 50
## 2579 0.000 unconnected asymmetric 54
## 2580 0.000 unconnected asymmetric 55
## 2581 0.000 unconnected asymmetric 66
## 2582 0.000 unconnected asymmetric 67
## 2583 0.000 unconnected asymmetric 71
## 2584 0.000 unconnected asymmetric 72
## 2585 0.000 unconnected asymmetric 89
## 2586 0.000 unconnected asymmetric 90
## 2587 0.000 unconnected asymmetric 94
## 2588 0.000 unconnected asymmetric 95
## 2589 0.000 unconnected asymmetric 106
## 2590 0.000 unconnected asymmetric 107
## 2591 0.000 unconnected asymmetric 111
## 2592 0.000 unconnected asymmetric 112
## 2593 0.000 unconnected asymmetric 9
## 2594 0.000 unconnected asymmetric 10
## 2595 0.000 unconnected asymmetric 14
## 2596 0.000 unconnected asymmetric 15
## 2597 0.000 unconnected asymmetric 26
## 2598 0.000 unconnected asymmetric 27
## 2599 0.000 unconnected asymmetric 31
## 2600 0.000 unconnected asymmetric 32
## 2601 0.000 unconnected asymmetric 49
## 2602 0.000 unconnected asymmetric 50
## 2603 0.000 unconnected asymmetric 54
## 2604 0.000 unconnected asymmetric 55
## 2605 0.000 unconnected asymmetric 66
## 2606 0.000 unconnected asymmetric 67
## 2607 0.000 unconnected asymmetric 71
## 2608 0.000 unconnected asymmetric 72
## 2609 0.000 unconnected asymmetric 89
## 2610 0.000 unconnected asymmetric 90
## 2611 0.000 unconnected asymmetric 94
## 2612 0.000 unconnected asymmetric 95
## 2613 0.000 unconnected asymmetric 106
## 2614 0.000 unconnected asymmetric 107
## 2615 0.000 unconnected asymmetric 111
## 2616 0.000 unconnected asymmetric 112
## 2617 0.000 unconnected asymmetric 9
## 2618 0.000 unconnected asymmetric 10
## 2619 0.000 unconnected asymmetric 14
## 2620 0.000 unconnected asymmetric 15
## 2621 0.000 unconnected asymmetric 26
## 2622 0.000 unconnected asymmetric 27
## 2623 0.000 unconnected asymmetric 31
## 2624 0.000 unconnected asymmetric 32
## 2625 0.000 unconnected asymmetric 49
## 2626 0.000 unconnected asymmetric 50
## 2627 0.000 unconnected asymmetric 54
## 2628 0.000 unconnected asymmetric 55
## 2629 0.000 unconnected asymmetric 66
## 2630 0.000 unconnected asymmetric 67
## 2631 0.000 unconnected asymmetric 71
## 2632 0.000 unconnected asymmetric 72
## 2633 0.000 unconnected asymmetric 89
## 2634 0.000 unconnected asymmetric 90
## 2635 0.000 unconnected asymmetric 94
## 2636 0.000 unconnected asymmetric 95
## 2637 0.000 unconnected asymmetric 106
## 2638 0.000 unconnected asymmetric 107
## 2639 0.000 unconnected asymmetric 111
## 2640 0.000 unconnected asymmetric 112
## 2641 0.000 unconnected asymmetric 9
## 2642 0.000 unconnected asymmetric 10
## 2643 0.000 unconnected asymmetric 14
## 2644 0.000 unconnected asymmetric 15
## 2645 0.000 unconnected asymmetric 26
## 2646 0.000 unconnected asymmetric 27
## 2647 0.000 unconnected asymmetric 31
## 2648 0.000 unconnected asymmetric 32
## 2649 0.000 unconnected asymmetric 49
## 2650 0.000 unconnected asymmetric 50
## 2651 0.000 unconnected asymmetric 54
## 2652 0.000 unconnected asymmetric 55
## 2653 0.000 unconnected asymmetric 66
## 2654 0.000 unconnected asymmetric 67
## 2655 0.000 unconnected asymmetric 71
## 2656 0.000 unconnected asymmetric 72
## 2657 0.000 unconnected asymmetric 89
## 2658 0.000 unconnected asymmetric 90
## 2659 0.000 unconnected asymmetric 94
## 2660 0.000 unconnected asymmetric 95
## 2661 0.000 unconnected asymmetric 106
## 2662 0.000 unconnected asymmetric 107
## 2663 0.000 unconnected asymmetric 111
## 2664 0.000 unconnected asymmetric 112
## 2665 0.000 unconnected asymmetric 9
## 2666 0.000 unconnected asymmetric 10
## 2667 0.000 unconnected asymmetric 14
## 2668 0.000 unconnected asymmetric 15
## 2669 0.000 unconnected asymmetric 26
## 2670 0.000 unconnected asymmetric 27
## 2671 0.000 unconnected asymmetric 31
## 2672 0.000 unconnected asymmetric 32
## 2673 0.000 unconnected asymmetric 49
## 2674 0.000 unconnected asymmetric 50
## 2675 0.000 unconnected asymmetric 54
## 2676 0.000 unconnected asymmetric 55
## 2677 0.000 unconnected asymmetric 66
## 2678 0.000 unconnected asymmetric 67
## 2679 0.000 unconnected asymmetric 71
## 2680 0.000 unconnected asymmetric 72
## 2681 0.000 unconnected asymmetric 89
## 2682 0.000 unconnected asymmetric 90
## 2683 0.000 unconnected asymmetric 94
## 2684 0.000 unconnected asymmetric 95
## 2685 0.000 unconnected asymmetric 106
## 2686 0.000 unconnected asymmetric 107
## 2687 0.000 unconnected asymmetric 111
## 2688 0.000 unconnected asymmetric 112
## 2689 2243.895 unconnected asymmetric 3
## 2690 2243.895 unconnected asymmetric 8
## 2691 2243.895 unconnected asymmetric 13
## 2692 2243.895 unconnected asymmetric 18
## 2693 2243.895 unconnected asymmetric 23
## 2694 2243.895 unconnected asymmetric 28
## 2695 2243.895 unconnected asymmetric 33
## 2696 2243.895 unconnected asymmetric 38
## 2697 2243.895 unconnected asymmetric 43
## 2698 2243.895 unconnected asymmetric 48
## 2699 2243.895 unconnected asymmetric 53
## 2700 2243.895 unconnected asymmetric 58
## 2701 2243.895 unconnected asymmetric 63
## 2702 2243.895 unconnected asymmetric 68
## 2703 2243.895 unconnected asymmetric 73
## 2704 2243.895 unconnected asymmetric 78
## 2705 2243.895 unconnected asymmetric 83
## 2706 2243.895 unconnected asymmetric 88
## 2707 2243.895 unconnected asymmetric 93
## 2708 2243.895 unconnected asymmetric 98
## 2709 2243.895 unconnected asymmetric 103
## 2710 2243.895 unconnected asymmetric 108
## 2711 2243.895 unconnected asymmetric 113
## 2712 2243.895 unconnected asymmetric 118
## 2713 0.000 unconnected asymmetric 3
## 2714 0.000 unconnected asymmetric 8
## 2715 0.000 unconnected asymmetric 13
## 2716 0.000 unconnected asymmetric 18
## 2717 0.000 unconnected asymmetric 23
## 2718 0.000 unconnected asymmetric 28
## 2719 0.000 unconnected asymmetric 33
## 2720 0.000 unconnected asymmetric 38
## 2721 0.000 unconnected asymmetric 43
## 2722 0.000 unconnected asymmetric 48
## 2723 0.000 unconnected asymmetric 53
## 2724 0.000 unconnected asymmetric 58
## 2725 0.000 unconnected asymmetric 63
## 2726 0.000 unconnected asymmetric 68
## 2727 0.000 unconnected asymmetric 73
## 2728 0.000 unconnected asymmetric 78
## 2729 0.000 unconnected asymmetric 83
## 2730 0.000 unconnected asymmetric 88
## 2731 0.000 unconnected asymmetric 93
## 2732 0.000 unconnected asymmetric 98
## 2733 0.000 unconnected asymmetric 103
## 2734 0.000 unconnected asymmetric 108
## 2735 0.000 unconnected asymmetric 113
## 2736 0.000 unconnected asymmetric 118
## 2737 0.000 unconnected asymmetric 3
## 2738 0.000 unconnected asymmetric 8
## 2739 0.000 unconnected asymmetric 13
## 2740 0.000 unconnected asymmetric 18
## 2741 0.000 unconnected asymmetric 23
## 2742 0.000 unconnected asymmetric 28
## 2743 0.000 unconnected asymmetric 33
## 2744 0.000 unconnected asymmetric 38
## 2745 0.000 unconnected asymmetric 43
## 2746 0.000 unconnected asymmetric 48
## 2747 0.000 unconnected asymmetric 53
## 2748 0.000 unconnected asymmetric 58
## 2749 0.000 unconnected asymmetric 63
## 2750 0.000 unconnected asymmetric 68
## 2751 0.000 unconnected asymmetric 73
## 2752 0.000 unconnected asymmetric 78
## 2753 0.000 unconnected asymmetric 83
## 2754 0.000 unconnected asymmetric 88
## 2755 0.000 unconnected asymmetric 93
## 2756 0.000 unconnected asymmetric 98
## 2757 0.000 unconnected asymmetric 103
## 2758 0.000 unconnected asymmetric 108
## 2759 0.000 unconnected asymmetric 113
## 2760 0.000 unconnected asymmetric 118
## 2761 0.000 unconnected asymmetric 3
## 2762 0.000 unconnected asymmetric 8
## 2763 0.000 unconnected asymmetric 13
## 2764 0.000 unconnected asymmetric 18
## 2765 0.000 unconnected asymmetric 23
## 2766 0.000 unconnected asymmetric 28
## 2767 0.000 unconnected asymmetric 33
## 2768 0.000 unconnected asymmetric 38
## 2769 0.000 unconnected asymmetric 43
## 2770 0.000 unconnected asymmetric 48
## 2771 0.000 unconnected asymmetric 53
## 2772 0.000 unconnected asymmetric 58
## 2773 0.000 unconnected asymmetric 63
## 2774 0.000 unconnected asymmetric 68
## 2775 0.000 unconnected asymmetric 73
## 2776 0.000 unconnected asymmetric 78
## 2777 0.000 unconnected asymmetric 83
## 2778 0.000 unconnected asymmetric 88
## 2779 0.000 unconnected asymmetric 93
## 2780 0.000 unconnected asymmetric 98
## 2781 0.000 unconnected asymmetric 103
## 2782 0.000 unconnected asymmetric 108
## 2783 0.000 unconnected asymmetric 113
## 2784 0.000 unconnected asymmetric 118
## 2785 0.000 unconnected asymmetric 3
## 2786 0.000 unconnected asymmetric 8
## 2787 0.000 unconnected asymmetric 13
## 2788 0.000 unconnected asymmetric 18
## 2789 0.000 unconnected asymmetric 23
## 2790 0.000 unconnected asymmetric 28
## 2791 0.000 unconnected asymmetric 33
## 2792 0.000 unconnected asymmetric 38
## 2793 0.000 unconnected asymmetric 43
## 2794 0.000 unconnected asymmetric 48
## 2795 0.000 unconnected asymmetric 53
## 2796 0.000 unconnected asymmetric 58
## 2797 0.000 unconnected asymmetric 63
## 2798 0.000 unconnected asymmetric 68
## 2799 0.000 unconnected asymmetric 73
## 2800 0.000 unconnected asymmetric 78
## 2801 0.000 unconnected asymmetric 83
## 2802 0.000 unconnected asymmetric 88
## 2803 0.000 unconnected asymmetric 93
## 2804 0.000 unconnected asymmetric 98
## 2805 0.000 unconnected asymmetric 103
## 2806 0.000 unconnected asymmetric 108
## 2807 0.000 unconnected asymmetric 113
## 2808 0.000 unconnected asymmetric 118
## 2809 0.000 unconnected asymmetric 3
## 2810 0.000 unconnected asymmetric 8
## 2811 0.000 unconnected asymmetric 13
## 2812 0.000 unconnected asymmetric 18
## 2813 0.000 unconnected asymmetric 23
## 2814 0.000 unconnected asymmetric 28
## 2815 0.000 unconnected asymmetric 33
## 2816 0.000 unconnected asymmetric 38
## 2817 0.000 unconnected asymmetric 43
## 2818 0.000 unconnected asymmetric 48
## 2819 0.000 unconnected asymmetric 53
## 2820 0.000 unconnected asymmetric 58
## 2821 0.000 unconnected asymmetric 63
## 2822 0.000 unconnected asymmetric 68
## 2823 0.000 unconnected asymmetric 73
## 2824 0.000 unconnected asymmetric 78
## 2825 0.000 unconnected asymmetric 83
## 2826 0.000 unconnected asymmetric 88
## 2827 0.000 unconnected asymmetric 93
## 2828 0.000 unconnected asymmetric 98
## 2829 0.000 unconnected asymmetric 103
## 2830 0.000 unconnected asymmetric 108
## 2831 0.000 unconnected asymmetric 113
## 2832 0.000 unconnected asymmetric 118
## 2833 0.000 unconnected asymmetric 3
## 2834 0.000 unconnected asymmetric 8
## 2835 0.000 unconnected asymmetric 13
## 2836 0.000 unconnected asymmetric 18
## 2837 0.000 unconnected asymmetric 23
## 2838 0.000 unconnected asymmetric 28
## 2839 0.000 unconnected asymmetric 33
## 2840 0.000 unconnected asymmetric 38
## 2841 0.000 unconnected asymmetric 43
## 2842 0.000 unconnected asymmetric 48
## 2843 0.000 unconnected asymmetric 53
## 2844 0.000 unconnected asymmetric 58
## 2845 0.000 unconnected asymmetric 63
## 2846 0.000 unconnected asymmetric 68
## 2847 0.000 unconnected asymmetric 73
## 2848 0.000 unconnected asymmetric 78
## 2849 0.000 unconnected asymmetric 83
## 2850 0.000 unconnected asymmetric 88
## 2851 0.000 unconnected asymmetric 93
## 2852 0.000 unconnected asymmetric 98
## 2853 0.000 unconnected asymmetric 103
## 2854 0.000 unconnected asymmetric 108
## 2855 0.000 unconnected asymmetric 113
## 2856 0.000 unconnected asymmetric 118
## 2857 0.000 unconnected asymmetric 3
## 2858 0.000 unconnected asymmetric 8
## 2859 0.000 unconnected asymmetric 13
## 2860 0.000 unconnected asymmetric 18
## 2861 0.000 unconnected asymmetric 23
## 2862 0.000 unconnected asymmetric 28
## 2863 0.000 unconnected asymmetric 33
## 2864 0.000 unconnected asymmetric 38
## 2865 0.000 unconnected asymmetric 43
## 2866 0.000 unconnected asymmetric 48
## 2867 0.000 unconnected asymmetric 53
## 2868 0.000 unconnected asymmetric 58
## 2869 0.000 unconnected asymmetric 63
## 2870 0.000 unconnected asymmetric 68
## 2871 0.000 unconnected asymmetric 73
## 2872 0.000 unconnected asymmetric 78
## 2873 0.000 unconnected asymmetric 83
## 2874 0.000 unconnected asymmetric 88
## 2875 0.000 unconnected asymmetric 93
## 2876 0.000 unconnected asymmetric 98
## 2877 0.000 unconnected asymmetric 103
## 2878 0.000 unconnected asymmetric 108
## 2879 0.000 unconnected asymmetric 113
## 2880 0.000 unconnected asymmetric 118
## 2881 2243.895 unconnected asymmetric 53
## 2882 2243.895 unconnected asymmetric 54
## 2883 2243.895 unconnected asymmetric 55
## 2884 2243.895 unconnected asymmetric 56
## 2885 2243.895 unconnected asymmetric 57
## 2886 2243.895 unconnected asymmetric 58
## 2887 2243.895 unconnected asymmetric 61
## 2888 2243.895 unconnected asymmetric 70
## 2889 2243.895 unconnected asymmetric 71
## 2890 2243.895 unconnected asymmetric 76
## 2891 2243.895 unconnected asymmetric 77
## 2892 2243.895 unconnected asymmetric 78
## 2893 2243.895 unconnected asymmetric 83
## 2894 2243.895 unconnected asymmetric 84
## 2895 2243.895 unconnected asymmetric 85
## 2896 2243.895 unconnected asymmetric 90
## 2897 2243.895 unconnected asymmetric 91
## 2898 2243.895 unconnected asymmetric 100
## 2899 2243.895 unconnected asymmetric 103
## 2900 2243.895 unconnected asymmetric 104
## 2901 2243.895 unconnected asymmetric 105
## 2902 2243.895 unconnected asymmetric 106
## 2903 2243.895 unconnected asymmetric 107
## 2904 2243.895 unconnected asymmetric 108
## 2905 0.000 unconnected asymmetric 53
## 2906 0.000 unconnected asymmetric 54
## 2907 0.000 unconnected asymmetric 55
## 2908 0.000 unconnected asymmetric 56
## 2909 0.000 unconnected asymmetric 57
## 2910 0.000 unconnected asymmetric 58
## 2911 0.000 unconnected asymmetric 61
## 2912 0.000 unconnected asymmetric 70
## 2913 0.000 unconnected asymmetric 71
## 2914 0.000 unconnected asymmetric 76
## 2915 0.000 unconnected asymmetric 77
## 2916 0.000 unconnected asymmetric 78
## 2917 0.000 unconnected asymmetric 83
## 2918 0.000 unconnected asymmetric 84
## 2919 0.000 unconnected asymmetric 85
## 2920 0.000 unconnected asymmetric 90
## 2921 0.000 unconnected asymmetric 91
## 2922 0.000 unconnected asymmetric 100
## 2923 0.000 unconnected asymmetric 103
## 2924 0.000 unconnected asymmetric 104
## 2925 0.000 unconnected asymmetric 105
## 2926 0.000 unconnected asymmetric 106
## 2927 0.000 unconnected asymmetric 107
## 2928 0.000 unconnected asymmetric 108
## 2929 0.000 unconnected asymmetric 53
## 2930 0.000 unconnected asymmetric 54
## 2931 0.000 unconnected asymmetric 55
## 2932 0.000 unconnected asymmetric 56
## 2933 0.000 unconnected asymmetric 57
## 2934 0.000 unconnected asymmetric 58
## 2935 0.000 unconnected asymmetric 61
## 2936 0.000 unconnected asymmetric 70
## 2937 0.000 unconnected asymmetric 71
## 2938 0.000 unconnected asymmetric 76
## 2939 0.000 unconnected asymmetric 77
## 2940 0.000 unconnected asymmetric 78
## 2941 0.000 unconnected asymmetric 83
## 2942 0.000 unconnected asymmetric 84
## 2943 0.000 unconnected asymmetric 85
## 2944 0.000 unconnected asymmetric 90
## 2945 0.000 unconnected asymmetric 91
## 2946 0.000 unconnected asymmetric 100
## 2947 0.000 unconnected asymmetric 103
## 2948 0.000 unconnected asymmetric 104
## 2949 0.000 unconnected asymmetric 105
## 2950 0.000 unconnected asymmetric 106
## 2951 0.000 unconnected asymmetric 107
## 2952 0.000 unconnected asymmetric 108
## 2953 0.000 unconnected asymmetric 53
## 2954 0.000 unconnected asymmetric 54
## 2955 0.000 unconnected asymmetric 55
## 2956 0.000 unconnected asymmetric 56
## 2957 0.000 unconnected asymmetric 57
## 2958 0.000 unconnected asymmetric 58
## 2959 0.000 unconnected asymmetric 61
## 2960 0.000 unconnected asymmetric 70
## 2961 0.000 unconnected asymmetric 71
## 2962 0.000 unconnected asymmetric 76
## 2963 0.000 unconnected asymmetric 77
## 2964 0.000 unconnected asymmetric 78
## 2965 0.000 unconnected asymmetric 83
## 2966 0.000 unconnected asymmetric 84
## 2967 0.000 unconnected asymmetric 85
## 2968 0.000 unconnected asymmetric 90
## 2969 0.000 unconnected asymmetric 91
## 2970 0.000 unconnected asymmetric 100
## 2971 0.000 unconnected asymmetric 103
## 2972 0.000 unconnected asymmetric 104
## 2973 0.000 unconnected asymmetric 105
## 2974 0.000 unconnected asymmetric 106
## 2975 0.000 unconnected asymmetric 107
## 2976 0.000 unconnected asymmetric 108
## 2977 0.000 unconnected asymmetric 53
## 2978 0.000 unconnected asymmetric 54
## 2979 0.000 unconnected asymmetric 55
## 2980 0.000 unconnected asymmetric 56
## 2981 0.000 unconnected asymmetric 57
## 2982 0.000 unconnected asymmetric 58
## 2983 0.000 unconnected asymmetric 61
## 2984 0.000 unconnected asymmetric 70
## 2985 0.000 unconnected asymmetric 71
## 2986 0.000 unconnected asymmetric 76
## 2987 0.000 unconnected asymmetric 77
## 2988 0.000 unconnected asymmetric 78
## 2989 0.000 unconnected asymmetric 83
## 2990 0.000 unconnected asymmetric 84
## 2991 0.000 unconnected asymmetric 85
## 2992 0.000 unconnected asymmetric 90
## 2993 0.000 unconnected asymmetric 91
## 2994 0.000 unconnected asymmetric 100
## 2995 0.000 unconnected asymmetric 103
## 2996 0.000 unconnected asymmetric 104
## 2997 0.000 unconnected asymmetric 105
## 2998 0.000 unconnected asymmetric 106
## 2999 0.000 unconnected asymmetric 107
## 3000 0.000 unconnected asymmetric 108
## 3001 0.000 unconnected asymmetric 53
## 3002 0.000 unconnected asymmetric 54
## 3003 0.000 unconnected asymmetric 55
## 3004 0.000 unconnected asymmetric 56
## 3005 0.000 unconnected asymmetric 57
## 3006 0.000 unconnected asymmetric 58
## 3007 0.000 unconnected asymmetric 61
## 3008 0.000 unconnected asymmetric 70
## 3009 0.000 unconnected asymmetric 71
## 3010 0.000 unconnected asymmetric 76
## 3011 0.000 unconnected asymmetric 77
## 3012 0.000 unconnected asymmetric 78
## 3013 0.000 unconnected asymmetric 83
## 3014 0.000 unconnected asymmetric 84
## 3015 0.000 unconnected asymmetric 85
## 3016 0.000 unconnected asymmetric 90
## 3017 0.000 unconnected asymmetric 91
## 3018 0.000 unconnected asymmetric 100
## 3019 0.000 unconnected asymmetric 103
## 3020 0.000 unconnected asymmetric 104
## 3021 0.000 unconnected asymmetric 105
## 3022 0.000 unconnected asymmetric 106
## 3023 0.000 unconnected asymmetric 107
## 3024 0.000 unconnected asymmetric 108
## 3025 0.000 unconnected asymmetric 53
## 3026 0.000 unconnected asymmetric 54
## 3027 0.000 unconnected asymmetric 55
## 3028 0.000 unconnected asymmetric 56
## 3029 0.000 unconnected asymmetric 57
## 3030 0.000 unconnected asymmetric 58
## 3031 0.000 unconnected asymmetric 61
## 3032 0.000 unconnected asymmetric 70
## 3033 0.000 unconnected asymmetric 71
## 3034 0.000 unconnected asymmetric 76
## 3035 0.000 unconnected asymmetric 77
## 3036 0.000 unconnected asymmetric 78
## 3037 0.000 unconnected asymmetric 83
## 3038 0.000 unconnected asymmetric 84
## 3039 0.000 unconnected asymmetric 85
## 3040 0.000 unconnected asymmetric 90
## 3041 0.000 unconnected asymmetric 91
## 3042 0.000 unconnected asymmetric 100
## 3043 0.000 unconnected asymmetric 103
## 3044 0.000 unconnected asymmetric 104
## 3045 0.000 unconnected asymmetric 105
## 3046 0.000 unconnected asymmetric 106
## 3047 0.000 unconnected asymmetric 107
## 3048 0.000 unconnected asymmetric 108
## 3049 0.000 unconnected asymmetric 53
## 3050 0.000 unconnected asymmetric 54
## 3051 0.000 unconnected asymmetric 55
## 3052 0.000 unconnected asymmetric 56
## 3053 0.000 unconnected asymmetric 57
## 3054 0.000 unconnected asymmetric 58
## 3055 0.000 unconnected asymmetric 61
## 3056 0.000 unconnected asymmetric 70
## 3057 0.000 unconnected asymmetric 71
## 3058 0.000 unconnected asymmetric 76
## 3059 0.000 unconnected asymmetric 77
## 3060 0.000 unconnected asymmetric 78
## 3061 0.000 unconnected asymmetric 83
## 3062 0.000 unconnected asymmetric 84
## 3063 0.000 unconnected asymmetric 85
## 3064 0.000 unconnected asymmetric 90
## 3065 0.000 unconnected asymmetric 91
## 3066 0.000 unconnected asymmetric 100
## 3067 0.000 unconnected asymmetric 103
## 3068 0.000 unconnected asymmetric 104
## 3069 0.000 unconnected asymmetric 105
## 3070 0.000 unconnected asymmetric 106
## 3071 0.000 unconnected asymmetric 107
## 3072 0.000 unconnected asymmetric 108
## 3073 2243.895 unconnected asymmetric 13
## 3074 2243.895 unconnected asymmetric 14
## 3075 2243.895 unconnected asymmetric 15
## 3076 2243.895 unconnected asymmetric 16
## 3077 2243.895 unconnected asymmetric 17
## 3078 2243.895 unconnected asymmetric 18
## 3079 2243.895 unconnected asymmetric 21
## 3080 2243.895 unconnected asymmetric 30
## 3081 2243.895 unconnected asymmetric 31
## 3082 2243.895 unconnected asymmetric 36
## 3083 2243.895 unconnected asymmetric 37
## 3084 2243.895 unconnected asymmetric 38
## 3085 2243.895 unconnected asymmetric 43
## 3086 2243.895 unconnected asymmetric 44
## 3087 2243.895 unconnected asymmetric 45
## 3088 2243.895 unconnected asymmetric 50
## 3089 2243.895 unconnected asymmetric 51
## 3090 2243.895 unconnected asymmetric 60
## 3091 2243.895 unconnected asymmetric 63
## 3092 2243.895 unconnected asymmetric 64
## 3093 2243.895 unconnected asymmetric 65
## 3094 2243.895 unconnected asymmetric 66
## 3095 2243.895 unconnected asymmetric 67
## 3096 2243.895 unconnected asymmetric 68
## 3097 0.000 unconnected asymmetric 13
## 3098 0.000 unconnected asymmetric 14
## 3099 0.000 unconnected asymmetric 15
## 3100 0.000 unconnected asymmetric 16
## 3101 0.000 unconnected asymmetric 17
## 3102 0.000 unconnected asymmetric 18
## 3103 0.000 unconnected asymmetric 21
## 3104 0.000 unconnected asymmetric 30
## 3105 0.000 unconnected asymmetric 31
## 3106 0.000 unconnected asymmetric 36
## 3107 0.000 unconnected asymmetric 37
## 3108 0.000 unconnected asymmetric 38
## 3109 0.000 unconnected asymmetric 43
## 3110 0.000 unconnected asymmetric 44
## 3111 0.000 unconnected asymmetric 45
## 3112 0.000 unconnected asymmetric 50
## 3113 0.000 unconnected asymmetric 51
## 3114 0.000 unconnected asymmetric 60
## 3115 0.000 unconnected asymmetric 63
## 3116 0.000 unconnected asymmetric 64
## 3117 0.000 unconnected asymmetric 65
## 3118 0.000 unconnected asymmetric 66
## 3119 0.000 unconnected asymmetric 67
## 3120 0.000 unconnected asymmetric 68
## 3121 0.000 unconnected asymmetric 13
## 3122 0.000 unconnected asymmetric 14
## 3123 0.000 unconnected asymmetric 15
## 3124 0.000 unconnected asymmetric 16
## 3125 0.000 unconnected asymmetric 17
## 3126 0.000 unconnected asymmetric 18
## 3127 0.000 unconnected asymmetric 21
## 3128 0.000 unconnected asymmetric 30
## 3129 0.000 unconnected asymmetric 31
## 3130 0.000 unconnected asymmetric 36
## 3131 0.000 unconnected asymmetric 37
## 3132 0.000 unconnected asymmetric 38
## 3133 0.000 unconnected asymmetric 43
## 3134 0.000 unconnected asymmetric 44
## 3135 0.000 unconnected asymmetric 45
## 3136 0.000 unconnected asymmetric 50
## 3137 0.000 unconnected asymmetric 51
## 3138 0.000 unconnected asymmetric 60
## 3139 0.000 unconnected asymmetric 63
## 3140 0.000 unconnected asymmetric 64
## 3141 0.000 unconnected asymmetric 65
## 3142 0.000 unconnected asymmetric 66
## 3143 0.000 unconnected asymmetric 67
## 3144 0.000 unconnected asymmetric 68
## 3145 0.000 unconnected asymmetric 13
## 3146 0.000 unconnected asymmetric 14
## 3147 0.000 unconnected asymmetric 15
## 3148 0.000 unconnected asymmetric 16
## 3149 0.000 unconnected asymmetric 17
## 3150 0.000 unconnected asymmetric 18
## 3151 0.000 unconnected asymmetric 21
## 3152 0.000 unconnected asymmetric 30
## 3153 0.000 unconnected asymmetric 31
## 3154 0.000 unconnected asymmetric 36
## 3155 0.000 unconnected asymmetric 37
## 3156 0.000 unconnected asymmetric 38
## 3157 0.000 unconnected asymmetric 43
## 3158 0.000 unconnected asymmetric 44
## 3159 0.000 unconnected asymmetric 45
## 3160 0.000 unconnected asymmetric 50
## 3161 0.000 unconnected asymmetric 51
## 3162 0.000 unconnected asymmetric 60
## 3163 0.000 unconnected asymmetric 63
## 3164 0.000 unconnected asymmetric 64
## 3165 0.000 unconnected asymmetric 65
## 3166 0.000 unconnected asymmetric 66
## 3167 0.000 unconnected asymmetric 67
## 3168 0.000 unconnected asymmetric 68
## 3169 0.000 unconnected asymmetric 13
## 3170 0.000 unconnected asymmetric 14
## 3171 0.000 unconnected asymmetric 15
## 3172 0.000 unconnected asymmetric 16
## 3173 0.000 unconnected asymmetric 17
## 3174 0.000 unconnected asymmetric 18
## 3175 0.000 unconnected asymmetric 21
## 3176 0.000 unconnected asymmetric 30
## 3177 0.000 unconnected asymmetric 31
## 3178 0.000 unconnected asymmetric 36
## 3179 0.000 unconnected asymmetric 37
## 3180 0.000 unconnected asymmetric 38
## 3181 0.000 unconnected asymmetric 43
## 3182 0.000 unconnected asymmetric 44
## 3183 0.000 unconnected asymmetric 45
## 3184 0.000 unconnected asymmetric 50
## 3185 0.000 unconnected asymmetric 51
## 3186 0.000 unconnected asymmetric 60
## 3187 0.000 unconnected asymmetric 63
## 3188 0.000 unconnected asymmetric 64
## 3189 0.000 unconnected asymmetric 65
## 3190 0.000 unconnected asymmetric 66
## 3191 0.000 unconnected asymmetric 67
## 3192 0.000 unconnected asymmetric 68
## 3193 0.000 unconnected asymmetric 13
## 3194 0.000 unconnected asymmetric 14
## 3195 0.000 unconnected asymmetric 15
## 3196 0.000 unconnected asymmetric 16
## 3197 0.000 unconnected asymmetric 17
## 3198 0.000 unconnected asymmetric 18
## 3199 0.000 unconnected asymmetric 21
## 3200 0.000 unconnected asymmetric 30
## 3201 0.000 unconnected asymmetric 31
## 3202 0.000 unconnected asymmetric 36
## 3203 0.000 unconnected asymmetric 37
## 3204 0.000 unconnected asymmetric 38
## 3205 0.000 unconnected asymmetric 43
## 3206 0.000 unconnected asymmetric 44
## 3207 0.000 unconnected asymmetric 45
## 3208 0.000 unconnected asymmetric 50
## 3209 0.000 unconnected asymmetric 51
## 3210 0.000 unconnected asymmetric 60
## 3211 0.000 unconnected asymmetric 63
## 3212 0.000 unconnected asymmetric 64
## 3213 0.000 unconnected asymmetric 65
## 3214 0.000 unconnected asymmetric 66
## 3215 0.000 unconnected asymmetric 67
## 3216 0.000 unconnected asymmetric 68
## 3217 0.000 unconnected asymmetric 13
## 3218 0.000 unconnected asymmetric 14
## 3219 0.000 unconnected asymmetric 15
## 3220 0.000 unconnected asymmetric 16
## 3221 0.000 unconnected asymmetric 17
## 3222 0.000 unconnected asymmetric 18
## 3223 0.000 unconnected asymmetric 21
## 3224 0.000 unconnected asymmetric 30
## 3225 0.000 unconnected asymmetric 31
## ID_first_patch ID_second_patch
## 1 1 11
## 2 1 11
## 3 1 11
## 4 1 11
## 5 1 11
## 6 1 11
## 7 1 11
## 8 1 11
## 9 1 11
## 10 1 11
## 11 1 11
## 12 1 11
## 13 1 11
## 14 1 11
## 15 1 11
## 16 1 11
## 17 1 11
## 18 1 11
## 19 1 11
## 20 1 11
## 21 1 11
## 22 1 11
## 23 1 11
## 24 1 11
## 25 1 11
## 26 1 11
## 27 1 11
## 28 1 11
## 29 1 11
## 30 1 11
## 31 1 11
## 32 1 11
## 33 1 11
## 34 1 11
## 35 1 11
## 36 1 11
## 37 1 11
## 38 1 11
## 39 1 11
## 40 1 11
## 41 1 11
## 42 1 11
## 43 1 11
## 44 1 11
## 45 1 11
## 46 1 11
## 47 1 11
## 48 1 11
## 49 1 11
## 50 1 11
## 51 1 11
## 52 1 11
## 53 1 11
## 54 1 11
## 55 1 11
## 56 1 11
## 57 1 11
## 58 1 11
## 59 1 11
## 60 1 11
## 61 1 11
## 62 1 11
## 63 1 11
## 64 1 11
## 65 1 11
## 66 1 11
## 67 1 11
## 68 1 11
## 69 1 11
## 70 1 11
## 71 1 11
## 72 1 11
## 73 1 11
## 74 1 11
## 75 1 11
## 76 1 11
## 77 1 11
## 78 1 11
## 79 1 11
## 80 1 11
## 81 1 11
## 82 1 11
## 83 1 11
## 84 1 11
## 85 1 11
## 86 1 11
## 87 1 11
## 88 1 11
## 89 1 11
## 90 1 11
## 91 1 11
## 92 1 11
## 93 1 11
## 94 1 11
## 95 1 11
## 96 1 11
## 97 1 11
## 98 1 11
## 99 1 11
## 100 1 11
## 101 1 11
## 102 1 11
## 103 1 11
## 104 1 11
## 105 1 11
## 106 1 11
## 107 1 11
## 108 1 11
## 109 1 11
## 110 1 11
## 111 1 11
## 112 1 11
## 113 1 11
## 114 1 11
## 115 1 11
## 116 1 11
## 117 1 11
## 118 1 11
## 119 1 11
## 120 1 11
## 121 1 11
## 122 1 11
## 123 1 11
## 124 1 11
## 125 1 11
## 126 1 11
## 127 1 11
## 128 1 11
## 129 1 11
## 130 1 11
## 131 1 11
## 132 1 11
## 133 1 11
## 134 1 11
## 135 1 11
## 136 1 11
## 137 1 11
## 138 1 11
## 139 1 11
## 140 1 11
## 141 1 11
## 142 1 11
## 143 1 11
## 144 1 11
## 145 1 11
## 146 1 11
## 147 1 11
## 148 1 11
## 149 1 11
## 150 1 11
## 151 1 11
## 152 1 11
## 153 1 11
## 154 1 11
## 155 1 11
## 156 1 11
## 157 1 11
## 158 1 11
## 159 1 11
## 160 1 11
## 161 1 11
## 162 1 11
## 163 1 11
## 164 1 11
## 165 1 11
## 166 1 11
## 167 1 11
## 168 1 11
## 169 1 11
## 170 1 11
## 171 1 11
## 172 1 11
## 173 1 11
## 174 1 11
## 175 1 11
## 176 1 11
## 177 1 11
## 178 1 11
## 179 1 11
## 180 1 11
## 181 1 11
## 182 1 11
## 183 1 11
## 184 1 11
## 185 1 11
## 186 1 11
## 187 1 11
## 188 1 11
## 189 1 11
## 190 1 11
## 191 1 11
## 192 1 11
## 193 1 12
## 194 1 12
## 195 1 12
## 196 1 12
## 197 1 12
## 198 1 12
## 199 1 12
## 200 1 12
## 201 1 12
## 202 1 12
## 203 1 12
## 204 1 12
## 205 1 12
## 206 1 12
## 207 1 12
## 208 1 12
## 209 1 12
## 210 1 12
## 211 1 12
## 212 1 12
## 213 1 12
## 214 1 12
## 215 1 12
## 216 1 12
## 217 1 12
## 218 1 12
## 219 1 12
## 220 1 12
## 221 1 12
## 222 1 12
## 223 1 12
## 224 1 12
## 225 1 12
## 226 1 12
## 227 1 12
## 228 1 12
## 229 1 12
## 230 1 12
## 231 1 12
## 232 1 12
## 233 1 12
## 234 1 12
## 235 1 12
## 236 1 12
## 237 1 12
## 238 1 12
## 239 1 12
## 240 1 12
## 241 1 12
## 242 1 12
## 243 1 12
## 244 1 12
## 245 1 12
## 246 1 12
## 247 1 12
## 248 1 12
## 249 1 12
## 250 1 12
## 251 1 12
## 252 1 12
## 253 1 12
## 254 1 12
## 255 1 12
## 256 1 12
## 257 1 12
## 258 1 12
## 259 1 12
## 260 1 12
## 261 1 12
## 262 1 12
## 263 1 12
## 264 1 12
## 265 1 12
## 266 1 12
## 267 1 12
## 268 1 12
## 269 1 12
## 270 1 12
## 271 1 12
## 272 1 12
## 273 1 12
## 274 1 12
## 275 1 12
## 276 1 12
## 277 1 12
## 278 1 12
## 279 1 12
## 280 1 12
## 281 1 12
## 282 1 12
## 283 1 12
## 284 1 12
## 285 1 12
## 286 1 12
## 287 1 12
## 288 1 12
## 289 1 12
## 290 1 12
## 291 1 12
## 292 1 12
## 293 1 12
## 294 1 12
## 295 1 12
## 296 1 12
## 297 1 12
## 298 1 12
## 299 1 12
## 300 1 12
## 301 1 12
## 302 1 12
## 303 1 12
## 304 1 12
## 305 1 12
## 306 1 12
## 307 1 12
## 308 1 12
## 309 1 12
## 310 1 12
## 311 1 12
## 312 1 12
## 313 1 12
## 314 1 12
## 315 1 12
## 316 1 12
## 317 1 12
## 318 1 12
## 319 1 12
## 320 1 12
## 321 1 12
## 322 1 12
## 323 1 12
## 324 1 12
## 325 1 12
## 326 1 12
## 327 1 12
## 328 1 12
## 329 1 12
## 330 1 12
## 331 1 12
## 332 1 12
## 333 1 12
## 334 1 12
## 335 1 12
## 336 1 12
## 337 1 12
## 338 1 12
## 339 1 12
## 340 1 12
## 341 1 12
## 342 1 12
## 343 1 12
## 344 1 12
## 345 1 12
## 346 1 12
## 347 1 12
## 348 1 12
## 349 1 12
## 350 1 12
## 351 1 12
## 352 1 12
## 353 1 12
## 354 1 12
## 355 1 12
## 356 1 12
## 357 1 12
## 358 1 12
## 359 1 12
## 360 1 12
## 361 1 12
## 362 1 12
## 363 1 12
## 364 1 12
## 365 1 12
## 366 1 12
## 367 1 12
## 368 1 12
## 369 1 12
## 370 1 12
## 371 1 12
## 372 1 12
## 373 1 12
## 374 1 12
## 375 1 12
## 376 1 12
## 377 1 12
## 378 1 12
## 379 1 12
## 380 1 12
## 381 1 12
## 382 1 12
## 383 1 12
## 384 1 12
## 385 1 13
## 386 1 13
## 387 1 13
## 388 1 13
## 389 1 13
## 390 1 13
## 391 1 13
## 392 1 13
## 393 1 13
## 394 1 13
## 395 1 13
## 396 1 13
## 397 1 13
## 398 1 13
## 399 1 13
## 400 1 13
## 401 1 13
## 402 1 13
## 403 1 13
## 404 1 13
## 405 1 13
## 406 1 13
## 407 1 13
## 408 1 13
## 409 1 13
## 410 1 13
## 411 1 13
## 412 1 13
## 413 1 13
## 414 1 13
## 415 1 13
## 416 1 13
## 417 1 13
## 418 1 13
## 419 1 13
## 420 1 13
## 421 1 13
## 422 1 13
## 423 1 13
## 424 1 13
## 425 1 13
## 426 1 13
## 427 1 13
## 428 1 13
## 429 1 13
## 430 1 13
## 431 1 13
## 432 1 13
## 433 1 13
## 434 1 13
## 435 1 13
## 436 1 13
## 437 1 13
## 438 1 13
## 439 1 13
## 440 1 13
## 441 1 13
## 442 1 13
## 443 1 13
## 444 1 13
## 445 1 13
## 446 1 13
## 447 1 13
## 448 1 13
## 449 1 13
## 450 1 13
## 451 1 13
## 452 1 13
## 453 1 13
## 454 1 13
## 455 1 13
## 456 1 13
## 457 1 13
## 458 1 13
## 459 1 13
## 460 1 13
## 461 1 13
## 462 1 13
## 463 1 13
## 464 1 13
## 465 1 13
## 466 1 13
## 467 1 13
## 468 1 13
## 469 1 13
## 470 1 13
## 471 1 13
## 472 1 13
## 473 1 13
## 474 1 13
## 475 1 13
## 476 1 13
## 477 1 13
## 478 1 13
## 479 1 13
## 480 1 13
## 481 1 13
## 482 1 13
## 483 1 13
## 484 1 13
## 485 1 13
## 486 1 13
## 487 1 13
## 488 1 13
## 489 1 13
## 490 1 13
## 491 1 13
## 492 1 13
## 493 1 13
## 494 1 13
## 495 1 13
## 496 1 13
## 497 1 13
## 498 1 13
## 499 1 13
## 500 1 13
## 501 1 13
## 502 1 13
## 503 1 13
## 504 1 13
## 505 1 13
## 506 1 13
## 507 1 13
## 508 1 13
## 509 1 13
## 510 1 13
## 511 1 13
## 512 1 13
## 513 1 13
## 514 1 13
## 515 1 13
## 516 1 13
## 517 1 13
## 518 1 13
## 519 1 13
## 520 1 13
## 521 1 13
## 522 1 13
## 523 1 13
## 524 1 13
## 525 1 13
## 526 1 13
## 527 1 13
## 528 1 13
## 529 1 13
## 530 1 13
## 531 1 13
## 532 1 13
## 533 1 13
## 534 1 13
## 535 1 13
## 536 1 13
## 537 1 13
## 538 1 13
## 539 1 13
## 540 1 13
## 541 1 13
## 542 1 13
## 543 1 13
## 544 1 13
## 545 1 13
## 546 1 13
## 547 1 13
## 548 1 13
## 549 1 13
## 550 1 13
## 551 1 13
## 552 1 13
## 553 1 13
## 554 1 13
## 555 1 13
## 556 1 13
## 557 1 13
## 558 1 13
## 559 1 13
## 560 1 13
## 561 1 13
## 562 1 13
## 563 1 13
## 564 1 13
## 565 1 13
## 566 1 13
## 567 1 13
## 568 1 13
## 569 1 13
## 570 1 13
## 571 1 13
## 572 1 13
## 573 1 13
## 574 1 13
## 575 1 13
## 576 1 13
## 577 1 14
## 578 1 14
## 579 1 14
## 580 1 14
## 581 1 14
## 582 1 14
## 583 1 14
## 584 1 14
## 585 1 14
## 586 1 14
## 587 1 14
## 588 1 14
## 589 1 14
## 590 1 14
## 591 1 14
## 592 1 14
## 593 1 14
## 594 1 14
## 595 1 14
## 596 1 14
## 597 1 14
## 598 1 14
## 599 1 14
## 600 1 14
## 601 1 14
## 602 1 14
## 603 1 14
## 604 1 14
## 605 1 14
## 606 1 14
## 607 1 14
## 608 1 14
## 609 1 14
## 610 1 14
## 611 1 14
## 612 1 14
## 613 1 14
## 614 1 14
## 615 1 14
## 616 1 14
## 617 1 14
## 618 1 14
## 619 1 14
## 620 1 14
## 621 1 14
## 622 1 14
## 623 1 14
## 624 1 14
## 625 1 14
## 626 1 14
## 627 1 14
## 628 1 14
## 629 1 14
## 630 1 14
## 631 1 14
## 632 1 14
## 633 1 14
## 634 1 14
## 635 1 14
## 636 1 14
## 637 1 14
## 638 1 14
## 639 1 14
## 640 1 14
## 641 1 14
## 642 1 14
## 643 1 14
## 644 1 14
## 645 1 14
## 646 1 14
## 647 1 14
## 648 1 14
## 649 1 14
## 650 1 14
## 651 1 14
## 652 1 14
## 653 1 14
## 654 1 14
## 655 1 14
## 656 1 14
## 657 1 14
## 658 1 14
## 659 1 14
## 660 1 14
## 661 1 14
## 662 1 14
## 663 1 14
## 664 1 14
## 665 1 14
## 666 1 14
## 667 1 14
## 668 1 14
## 669 1 14
## 670 1 14
## 671 1 14
## 672 1 14
## 673 1 14
## 674 1 14
## 675 1 14
## 676 1 14
## 677 1 14
## 678 1 14
## 679 1 14
## 680 1 14
## 681 1 14
## 682 1 14
## 683 1 14
## 684 1 14
## 685 1 14
## 686 1 14
## 687 1 14
## 688 1 14
## 689 1 14
## 690 1 14
## 691 1 14
## 692 1 14
## 693 1 14
## 694 1 14
## 695 1 14
## 696 1 14
## 697 1 14
## 698 1 14
## 699 1 14
## 700 1 14
## 701 1 14
## 702 1 14
## 703 1 14
## 704 1 14
## 705 1 14
## 706 1 14
## 707 1 14
## 708 1 14
## 709 1 14
## 710 1 14
## 711 1 14
## 712 1 14
## 713 1 14
## 714 1 14
## 715 1 14
## 716 1 14
## 717 1 14
## 718 1 14
## 719 1 14
## 720 1 14
## 721 1 14
## 722 1 14
## 723 1 14
## 724 1 14
## 725 1 14
## 726 1 14
## 727 1 14
## 728 1 14
## 729 1 14
## 730 1 14
## 731 1 14
## 732 1 14
## 733 1 14
## 734 1 14
## 735 1 14
## 736 1 14
## 737 1 14
## 738 1 14
## 739 1 14
## 740 1 14
## 741 1 14
## 742 1 14
## 743 1 14
## 744 1 14
## 745 1 14
## 746 1 14
## 747 1 14
## 748 1 14
## 749 1 14
## 750 1 14
## 751 1 14
## 752 1 14
## 753 1 14
## 754 1 14
## 755 1 14
## 756 1 14
## 757 1 14
## 758 1 14
## 759 1 14
## 760 1 14
## 761 1 14
## 762 1 14
## 763 1 14
## 764 1 14
## 765 1 14
## 766 1 14
## 767 1 14
## 768 1 14
## 769 1 15
## 770 1 15
## 771 1 15
## 772 1 15
## 773 1 15
## 774 1 15
## 775 1 15
## 776 1 15
## 777 1 15
## 778 1 15
## 779 1 15
## 780 1 15
## 781 1 15
## 782 1 15
## 783 1 15
## 784 1 15
## 785 1 15
## 786 1 15
## 787 1 15
## 788 1 15
## 789 1 15
## 790 1 15
## 791 1 15
## 792 1 15
## 793 1 15
## 794 1 15
## 795 1 15
## 796 1 15
## 797 1 15
## 798 1 15
## 799 1 15
## 800 1 15
## 801 1 15
## 802 1 15
## 803 1 15
## 804 1 15
## 805 1 15
## 806 1 15
## 807 1 15
## 808 1 15
## 809 1 15
## 810 1 15
## 811 1 15
## 812 1 15
## 813 1 15
## 814 1 15
## 815 1 15
## 816 1 15
## 817 1 15
## 818 1 15
## 819 1 15
## 820 1 15
## 821 1 15
## 822 1 15
## 823 1 15
## 824 1 15
## 825 1 15
## 826 1 15
## 827 1 15
## 828 1 15
## 829 1 15
## 830 1 15
## 831 1 15
## 832 1 15
## 833 1 15
## 834 1 15
## 835 1 15
## 836 1 15
## 837 1 15
## 838 1 15
## 839 1 15
## 840 1 15
## 841 1 15
## 842 1 15
## 843 1 15
## 844 1 15
## 845 1 15
## 846 1 15
## 847 1 15
## 848 1 15
## 849 1 15
## 850 1 15
## 851 1 15
## 852 1 15
## 853 1 15
## 854 1 15
## 855 1 15
## 856 1 15
## 857 1 15
## 858 1 15
## 859 1 15
## 860 1 15
## 861 1 15
## 862 1 15
## 863 1 15
## 864 1 15
## 865 1 15
## 866 1 15
## 867 1 15
## 868 1 15
## 869 1 15
## 870 1 15
## 871 1 15
## 872 1 15
## 873 1 15
## 874 1 15
## 875 1 15
## 876 1 15
## 877 1 15
## 878 1 15
## 879 1 15
## 880 1 15
## 881 1 15
## 882 1 15
## 883 1 15
## 884 1 15
## 885 1 15
## 886 1 15
## 887 1 15
## 888 1 15
## 889 1 15
## 890 1 15
## 891 1 15
## 892 1 15
## 893 1 15
## 894 1 15
## 895 1 15
## 896 1 15
## 897 1 15
## 898 1 15
## 899 1 15
## 900 1 15
## 901 1 15
## 902 1 15
## 903 1 15
## 904 1 15
## 905 1 15
## 906 1 15
## 907 1 15
## 908 1 15
## 909 1 15
## 910 1 15
## 911 1 15
## 912 1 15
## 913 1 15
## 914 1 15
## 915 1 15
## 916 1 15
## 917 1 15
## 918 1 15
## 919 1 15
## 920 1 15
## 921 1 15
## 922 1 15
## 923 1 15
## 924 1 15
## 925 1 15
## 926 1 15
## 927 1 15
## 928 1 15
## 929 1 15
## 930 1 15
## 931 1 15
## 932 1 15
## 933 1 15
## 934 1 15
## 935 1 15
## 936 1 15
## 937 1 15
## 938 1 15
## 939 1 15
## 940 1 15
## 941 1 15
## 942 1 15
## 943 1 15
## 944 1 15
## 945 1 15
## 946 1 15
## 947 1 15
## 948 1 15
## 949 1 15
## 950 1 15
## 951 1 15
## 952 1 15
## 953 1 15
## 954 1 15
## 955 1 15
## 956 1 15
## 957 1 15
## 958 1 15
## 959 1 15
## 960 1 15
## 961 2 11
## 962 2 11
## 963 2 11
## 964 2 11
## 965 2 11
## 966 2 11
## 967 2 11
## 968 2 11
## 969 2 11
## 970 2 11
## 971 2 11
## 972 2 11
## 973 2 11
## 974 2 11
## 975 2 11
## 976 2 11
## 977 2 11
## 978 2 11
## 979 2 11
## 980 2 11
## 981 2 11
## 982 2 11
## 983 2 11
## 984 2 11
## 985 2 11
## 986 2 11
## 987 2 11
## 988 2 11
## 989 2 11
## 990 2 11
## 991 2 11
## 992 2 11
## 993 2 11
## 994 2 11
## 995 2 11
## 996 2 11
## 997 2 11
## 998 2 11
## 999 2 11
## 1000 2 11
## 1001 2 11
## 1002 2 11
## 1003 2 11
## 1004 2 11
## 1005 2 11
## 1006 2 11
## 1007 2 11
## 1008 2 11
## 1009 2 11
## 1010 2 11
## 1011 2 11
## 1012 2 11
## 1013 2 11
## 1014 2 11
## 1015 2 11
## 1016 2 11
## 1017 2 11
## 1018 2 11
## 1019 2 11
## 1020 2 11
## 1021 2 11
## 1022 2 11
## 1023 2 11
## 1024 2 11
## 1025 2 11
## 1026 2 11
## 1027 2 11
## 1028 2 11
## 1029 2 11
## 1030 2 11
## 1031 2 11
## 1032 2 11
## 1033 2 11
## 1034 2 11
## 1035 2 11
## 1036 2 11
## 1037 2 11
## 1038 2 11
## 1039 2 11
## 1040 2 11
## 1041 2 11
## 1042 2 11
## 1043 2 11
## 1044 2 11
## 1045 2 11
## 1046 2 11
## 1047 2 11
## 1048 2 11
## 1049 2 11
## 1050 2 11
## 1051 2 11
## 1052 2 11
## 1053 2 11
## 1054 2 11
## 1055 2 11
## 1056 2 11
## 1057 2 11
## 1058 2 11
## 1059 2 11
## 1060 2 11
## 1061 2 11
## 1062 2 11
## 1063 2 11
## 1064 2 11
## 1065 2 11
## 1066 2 11
## 1067 2 11
## 1068 2 11
## 1069 2 11
## 1070 2 11
## 1071 2 11
## 1072 2 11
## 1073 2 11
## 1074 2 11
## 1075 2 11
## 1076 2 11
## 1077 2 11
## 1078 2 11
## 1079 2 11
## 1080 2 11
## 1081 2 11
## 1082 2 11
## 1083 2 11
## 1084 2 11
## 1085 2 11
## 1086 2 11
## 1087 2 11
## 1088 2 11
## 1089 2 11
## 1090 2 11
## 1091 2 11
## 1092 2 11
## 1093 2 11
## 1094 2 11
## 1095 2 11
## 1096 2 11
## 1097 2 11
## 1098 2 11
## 1099 2 11
## 1100 2 11
## 1101 2 11
## 1102 2 11
## 1103 2 11
## 1104 2 11
## 1105 2 11
## 1106 2 11
## 1107 2 11
## 1108 2 11
## 1109 2 11
## 1110 2 11
## 1111 2 11
## 1112 2 11
## 1113 2 11
## 1114 2 11
## 1115 2 11
## 1116 2 11
## 1117 2 11
## 1118 2 11
## 1119 2 11
## 1120 2 11
## 1121 2 11
## 1122 2 11
## 1123 2 11
## 1124 2 11
## 1125 2 11
## 1126 2 11
## 1127 2 11
## 1128 2 11
## 1129 2 11
## 1130 2 11
## 1131 2 11
## 1132 2 11
## 1133 2 11
## 1134 2 11
## 1135 2 11
## 1136 2 11
## 1137 2 11
## 1138 2 11
## 1139 2 11
## 1140 2 11
## 1141 2 11
## 1142 2 11
## 1143 2 11
## 1144 2 11
## 1145 2 11
## 1146 2 11
## 1147 2 11
## 1148 2 11
## 1149 2 11
## 1150 2 11
## 1151 2 11
## 1152 2 11
## 1153 2 12
## 1154 2 12
## 1155 2 12
## 1156 2 12
## 1157 2 12
## 1158 2 12
## 1159 2 12
## 1160 2 12
## 1161 2 12
## 1162 2 12
## 1163 2 12
## 1164 2 12
## 1165 2 12
## 1166 2 12
## 1167 2 12
## 1168 2 12
## 1169 2 12
## 1170 2 12
## 1171 2 12
## 1172 2 12
## 1173 2 12
## 1174 2 12
## 1175 2 12
## 1176 2 12
## 1177 2 12
## 1178 2 12
## 1179 2 12
## 1180 2 12
## 1181 2 12
## 1182 2 12
## 1183 2 12
## 1184 2 12
## 1185 2 12
## 1186 2 12
## 1187 2 12
## 1188 2 12
## 1189 2 12
## 1190 2 12
## 1191 2 12
## 1192 2 12
## 1193 2 12
## 1194 2 12
## 1195 2 12
## 1196 2 12
## 1197 2 12
## 1198 2 12
## 1199 2 12
## 1200 2 12
## 1201 2 12
## 1202 2 12
## 1203 2 12
## 1204 2 12
## 1205 2 12
## 1206 2 12
## 1207 2 12
## 1208 2 12
## 1209 2 12
## 1210 2 12
## 1211 2 12
## 1212 2 12
## 1213 2 12
## 1214 2 12
## 1215 2 12
## 1216 2 12
## 1217 2 12
## 1218 2 12
## 1219 2 12
## 1220 2 12
## 1221 2 12
## 1222 2 12
## 1223 2 12
## 1224 2 12
## 1225 2 12
## 1226 2 12
## 1227 2 12
## 1228 2 12
## 1229 2 12
## 1230 2 12
## 1231 2 12
## 1232 2 12
## 1233 2 12
## 1234 2 12
## 1235 2 12
## 1236 2 12
## 1237 2 12
## 1238 2 12
## 1239 2 12
## 1240 2 12
## 1241 2 12
## 1242 2 12
## 1243 2 12
## 1244 2 12
## 1245 2 12
## 1246 2 12
## 1247 2 12
## 1248 2 12
## 1249 2 12
## 1250 2 12
## 1251 2 12
## 1252 2 12
## 1253 2 12
## 1254 2 12
## 1255 2 12
## 1256 2 12
## 1257 2 12
## 1258 2 12
## 1259 2 12
## 1260 2 12
## 1261 2 12
## 1262 2 12
## 1263 2 12
## 1264 2 12
## 1265 2 12
## 1266 2 12
## 1267 2 12
## 1268 2 12
## 1269 2 12
## 1270 2 12
## 1271 2 12
## 1272 2 12
## 1273 2 12
## 1274 2 12
## 1275 2 12
## 1276 2 12
## 1277 2 12
## 1278 2 12
## 1279 2 12
## 1280 2 12
## 1281 2 12
## 1282 2 12
## 1283 2 12
## 1284 2 12
## 1285 2 12
## 1286 2 12
## 1287 2 12
## 1288 2 12
## 1289 2 12
## 1290 2 12
## 1291 2 12
## 1292 2 12
## 1293 2 12
## 1294 2 12
## 1295 2 12
## 1296 2 12
## 1297 2 12
## 1298 2 12
## 1299 2 12
## 1300 2 12
## 1301 2 12
## 1302 2 12
## 1303 2 12
## 1304 2 12
## 1305 2 12
## 1306 2 12
## 1307 2 12
## 1308 2 12
## 1309 2 12
## 1310 2 12
## 1311 2 12
## 1312 2 12
## 1313 2 12
## 1314 2 12
## 1315 2 12
## 1316 2 12
## 1317 2 12
## 1318 2 12
## 1319 2 12
## 1320 2 12
## 1321 2 12
## 1322 2 12
## 1323 2 12
## 1324 2 12
## 1325 2 12
## 1326 2 12
## 1327 2 12
## 1328 2 12
## 1329 2 12
## 1330 2 12
## 1331 2 12
## 1332 2 12
## 1333 2 12
## 1334 2 12
## 1335 2 12
## 1336 2 12
## 1337 2 12
## 1338 2 12
## 1339 2 12
## 1340 2 12
## 1341 2 12
## 1342 2 12
## 1343 2 12
## 1344 2 12
## 1345 2 13
## 1346 2 13
## 1347 2 13
## 1348 2 13
## 1349 2 13
## 1350 2 13
## 1351 2 13
## 1352 2 13
## 1353 2 13
## 1354 2 13
## 1355 2 13
## 1356 2 13
## 1357 2 13
## 1358 2 13
## 1359 2 13
## 1360 2 13
## 1361 2 13
## 1362 2 13
## 1363 2 13
## 1364 2 13
## 1365 2 13
## 1366 2 13
## 1367 2 13
## 1368 2 13
## 1369 2 13
## 1370 2 13
## 1371 2 13
## 1372 2 13
## 1373 2 13
## 1374 2 13
## 1375 2 13
## 1376 2 13
## 1377 2 13
## 1378 2 13
## 1379 2 13
## 1380 2 13
## 1381 2 13
## 1382 2 13
## 1383 2 13
## 1384 2 13
## 1385 2 13
## 1386 2 13
## 1387 2 13
## 1388 2 13
## 1389 2 13
## 1390 2 13
## 1391 2 13
## 1392 2 13
## 1393 2 13
## 1394 2 13
## 1395 2 13
## 1396 2 13
## 1397 2 13
## 1398 2 13
## 1399 2 13
## 1400 2 13
## 1401 2 13
## 1402 2 13
## 1403 2 13
## 1404 2 13
## 1405 2 13
## 1406 2 13
## 1407 2 13
## 1408 2 13
## 1409 2 13
## 1410 2 13
## 1411 2 13
## 1412 2 13
## 1413 2 13
## 1414 2 13
## 1415 2 13
## 1416 2 13
## 1417 2 13
## 1418 2 13
## 1419 2 13
## 1420 2 13
## 1421 2 13
## 1422 2 13
## 1423 2 13
## 1424 2 13
## 1425 2 13
## 1426 2 13
## 1427 2 13
## 1428 2 13
## 1429 2 13
## 1430 2 13
## 1431 2 13
## 1432 2 13
## 1433 2 13
## 1434 2 13
## 1435 2 13
## 1436 2 13
## 1437 2 13
## 1438 2 13
## 1439 2 13
## 1440 2 13
## 1441 2 13
## 1442 2 13
## 1443 2 13
## 1444 2 13
## 1445 2 13
## 1446 2 13
## 1447 2 13
## 1448 2 13
## 1449 2 13
## 1450 2 13
## 1451 2 13
## 1452 2 13
## 1453 2 13
## 1454 2 13
## 1455 2 13
## 1456 2 13
## 1457 2 13
## 1458 2 13
## 1459 2 13
## 1460 2 13
## 1461 2 13
## 1462 2 13
## 1463 2 13
## 1464 2 13
## 1465 2 13
## 1466 2 13
## 1467 2 13
## 1468 2 13
## 1469 2 13
## 1470 2 13
## 1471 2 13
## 1472 2 13
## 1473 2 13
## 1474 2 13
## 1475 2 13
## 1476 2 13
## 1477 2 13
## 1478 2 13
## 1479 2 13
## 1480 2 13
## 1481 2 13
## 1482 2 13
## 1483 2 13
## 1484 2 13
## 1485 2 13
## 1486 2 13
## 1487 2 13
## 1488 2 13
## 1489 2 13
## 1490 2 13
## 1491 2 13
## 1492 2 13
## 1493 2 13
## 1494 2 13
## 1495 2 13
## 1496 2 13
## 1497 2 13
## 1498 2 13
## 1499 2 13
## 1500 2 13
## 1501 2 13
## 1502 2 13
## 1503 2 13
## 1504 2 13
## 1505 2 13
## 1506 2 13
## 1507 2 13
## 1508 2 13
## 1509 2 13
## 1510 2 13
## 1511 2 13
## 1512 2 13
## 1513 2 13
## 1514 2 13
## 1515 2 13
## 1516 2 13
## 1517 2 13
## 1518 2 13
## 1519 2 13
## 1520 2 13
## 1521 2 13
## 1522 2 13
## 1523 2 13
## 1524 2 13
## 1525 2 13
## 1526 2 13
## 1527 2 13
## 1528 2 13
## 1529 2 13
## 1530 2 13
## 1531 2 13
## 1532 2 13
## 1533 2 13
## 1534 2 13
## 1535 2 13
## 1536 2 13
## 1537 2 14
## 1538 2 14
## 1539 2 14
## 1540 2 14
## 1541 2 14
## 1542 2 14
## 1543 2 14
## 1544 2 14
## 1545 2 14
## 1546 2 14
## 1547 2 14
## 1548 2 14
## 1549 2 14
## 1550 2 14
## 1551 2 14
## 1552 2 14
## 1553 2 14
## 1554 2 14
## 1555 2 14
## 1556 2 14
## 1557 2 14
## 1558 2 14
## 1559 2 14
## 1560 2 14
## 1561 2 14
## 1562 2 14
## 1563 2 14
## 1564 2 14
## 1565 2 14
## 1566 2 14
## 1567 2 14
## 1568 2 14
## 1569 2 14
## 1570 2 14
## 1571 2 14
## 1572 2 14
## 1573 2 14
## 1574 2 14
## 1575 2 14
## 1576 2 14
## 1577 2 14
## 1578 2 14
## 1579 2 14
## 1580 2 14
## 1581 2 14
## 1582 2 14
## 1583 2 14
## 1584 2 14
## 1585 2 14
## 1586 2 14
## 1587 2 14
## 1588 2 14
## 1589 2 14
## 1590 2 14
## 1591 2 14
## 1592 2 14
## 1593 2 14
## 1594 2 14
## 1595 2 14
## 1596 2 14
## 1597 2 14
## 1598 2 14
## 1599 2 14
## 1600 2 14
## 1601 2 14
## 1602 2 14
## 1603 2 14
## 1604 2 14
## 1605 2 14
## 1606 2 14
## 1607 2 14
## 1608 2 14
## 1609 2 14
## 1610 2 14
## 1611 2 14
## 1612 2 14
## 1613 2 14
## 1614 2 14
## 1615 2 14
## 1616 2 14
## 1617 2 14
## 1618 2 14
## 1619 2 14
## 1620 2 14
## 1621 2 14
## 1622 2 14
## 1623 2 14
## 1624 2 14
## 1625 2 14
## 1626 2 14
## 1627 2 14
## 1628 2 14
## 1629 2 14
## 1630 2 14
## 1631 2 14
## 1632 2 14
## 1633 2 14
## 1634 2 14
## 1635 2 14
## 1636 2 14
## 1637 2 14
## 1638 2 14
## 1639 2 14
## 1640 2 14
## 1641 2 14
## 1642 2 14
## 1643 2 14
## 1644 2 14
## 1645 2 14
## 1646 2 14
## 1647 2 14
## 1648 2 14
## 1649 2 14
## 1650 2 14
## 1651 2 14
## 1652 2 14
## 1653 2 14
## 1654 2 14
## 1655 2 14
## 1656 2 14
## 1657 2 14
## 1658 2 14
## 1659 2 14
## 1660 2 14
## 1661 2 14
## 1662 2 14
## 1663 2 14
## 1664 2 14
## 1665 2 14
## 1666 2 14
## 1667 2 14
## 1668 2 14
## 1669 2 14
## 1670 2 14
## 1671 2 14
## 1672 2 14
## 1673 2 14
## 1674 2 14
## 1675 2 14
## 1676 2 14
## 1677 2 14
## 1678 2 14
## 1679 2 14
## 1680 2 14
## 1681 2 14
## 1682 2 14
## 1683 2 14
## 1684 2 14
## 1685 2 14
## 1686 2 14
## 1687 2 14
## 1688 2 14
## 1689 2 14
## 1690 2 14
## 1691 2 14
## 1692 2 14
## 1693 2 14
## 1694 2 14
## 1695 2 14
## 1696 2 14
## 1697 2 14
## 1698 2 14
## 1699 2 14
## 1700 2 14
## 1701 2 14
## 1702 2 14
## 1703 2 14
## 1704 2 14
## 1705 2 14
## 1706 2 14
## 1707 2 14
## 1708 2 14
## 1709 2 14
## 1710 2 14
## 1711 2 14
## 1712 2 14
## 1713 2 14
## 1714 2 14
## 1715 2 14
## 1716 2 14
## 1717 2 14
## 1718 2 14
## 1719 2 14
## 1720 2 14
## 1721 2 14
## 1722 2 14
## 1723 2 14
## 1724 2 14
## 1725 2 14
## 1726 2 14
## 1727 2 14
## 1728 2 14
## 1729 2 15
## 1730 2 15
## 1731 2 15
## 1732 2 15
## 1733 2 15
## 1734 2 15
## 1735 2 15
## 1736 2 15
## 1737 2 15
## 1738 2 15
## 1739 2 15
## 1740 2 15
## 1741 2 15
## 1742 2 15
## 1743 2 15
## 1744 2 15
## 1745 2 15
## 1746 2 15
## 1747 2 15
## 1748 2 15
## 1749 2 15
## 1750 2 15
## 1751 2 15
## 1752 2 15
## 1753 2 15
## 1754 2 15
## 1755 2 15
## 1756 2 15
## 1757 2 15
## 1758 2 15
## 1759 2 15
## 1760 2 15
## 1761 2 15
## 1762 2 15
## 1763 2 15
## 1764 2 15
## 1765 2 15
## 1766 2 15
## 1767 2 15
## 1768 2 15
## 1769 2 15
## 1770 2 15
## 1771 2 15
## 1772 2 15
## 1773 2 15
## 1774 2 15
## 1775 2 15
## 1776 2 15
## 1777 2 15
## 1778 2 15
## 1779 2 15
## 1780 2 15
## 1781 2 15
## 1782 2 15
## 1783 2 15
## 1784 2 15
## 1785 2 15
## 1786 2 15
## 1787 2 15
## 1788 2 15
## 1789 2 15
## 1790 2 15
## 1791 2 15
## 1792 2 15
## 1793 2 15
## 1794 2 15
## 1795 2 15
## 1796 2 15
## 1797 2 15
## 1798 2 15
## 1799 2 15
## 1800 2 15
## 1801 2 15
## 1802 2 15
## 1803 2 15
## 1804 2 15
## 1805 2 15
## 1806 2 15
## 1807 2 15
## 1808 2 15
## 1809 2 15
## 1810 2 15
## 1811 2 15
## 1812 2 15
## 1813 2 15
## 1814 2 15
## 1815 2 15
## 1816 2 15
## 1817 2 15
## 1818 2 15
## 1819 2 15
## 1820 2 15
## 1821 2 15
## 1822 2 15
## 1823 2 15
## 1824 2 15
## 1825 2 15
## 1826 2 15
## 1827 2 15
## 1828 2 15
## 1829 2 15
## 1830 2 15
## 1831 2 15
## 1832 2 15
## 1833 2 15
## 1834 2 15
## 1835 2 15
## 1836 2 15
## 1837 2 15
## 1838 2 15
## 1839 2 15
## 1840 2 15
## 1841 2 15
## 1842 2 15
## 1843 2 15
## 1844 2 15
## 1845 2 15
## 1846 2 15
## 1847 2 15
## 1848 2 15
## 1849 2 15
## 1850 2 15
## 1851 2 15
## 1852 2 15
## 1853 2 15
## 1854 2 15
## 1855 2 15
## 1856 2 15
## 1857 2 15
## 1858 2 15
## 1859 2 15
## 1860 2 15
## 1861 2 15
## 1862 2 15
## 1863 2 15
## 1864 2 15
## 1865 2 15
## 1866 2 15
## 1867 2 15
## 1868 2 15
## 1869 2 15
## 1870 2 15
## 1871 2 15
## 1872 2 15
## 1873 2 15
## 1874 2 15
## 1875 2 15
## 1876 2 15
## 1877 2 15
## 1878 2 15
## 1879 2 15
## 1880 2 15
## 1881 2 15
## 1882 2 15
## 1883 2 15
## 1884 2 15
## 1885 2 15
## 1886 2 15
## 1887 2 15
## 1888 2 15
## 1889 2 15
## 1890 2 15
## 1891 2 15
## 1892 2 15
## 1893 2 15
## 1894 2 15
## 1895 2 15
## 1896 2 15
## 1897 2 15
## 1898 2 15
## 1899 2 15
## 1900 2 15
## 1901 2 15
## 1902 2 15
## 1903 2 15
## 1904 2 15
## 1905 2 15
## 1906 2 15
## 1907 2 15
## 1908 2 15
## 1909 2 15
## 1910 2 15
## 1911 2 15
## 1912 2 15
## 1913 2 15
## 1914 2 15
## 1915 2 15
## 1916 2 15
## 1917 2 15
## 1918 2 15
## 1919 2 15
## 1920 2 15
## 1921 3 11
## 1922 3 11
## 1923 3 11
## 1924 3 11
## 1925 3 11
## 1926 3 11
## 1927 3 11
## 1928 3 11
## 1929 3 11
## 1930 3 11
## 1931 3 11
## 1932 3 11
## 1933 3 11
## 1934 3 11
## 1935 3 11
## 1936 3 11
## 1937 3 11
## 1938 3 11
## 1939 3 11
## 1940 3 11
## 1941 3 11
## 1942 3 11
## 1943 3 11
## 1944 3 11
## 1945 3 11
## 1946 3 11
## 1947 3 11
## 1948 3 11
## 1949 3 11
## 1950 3 11
## 1951 3 11
## 1952 3 11
## 1953 3 11
## 1954 3 11
## 1955 3 11
## 1956 3 11
## 1957 3 11
## 1958 3 11
## 1959 3 11
## 1960 3 11
## 1961 3 11
## 1962 3 11
## 1963 3 11
## 1964 3 11
## 1965 3 11
## 1966 3 11
## 1967 3 11
## 1968 3 11
## 1969 3 11
## 1970 3 11
## 1971 3 11
## 1972 3 11
## 1973 3 11
## 1974 3 11
## 1975 3 11
## 1976 3 11
## 1977 3 11
## 1978 3 11
## 1979 3 11
## 1980 3 11
## 1981 3 11
## 1982 3 11
## 1983 3 11
## 1984 3 11
## 1985 3 11
## 1986 3 11
## 1987 3 11
## 1988 3 11
## 1989 3 11
## 1990 3 11
## 1991 3 11
## 1992 3 11
## 1993 3 11
## 1994 3 11
## 1995 3 11
## 1996 3 11
## 1997 3 11
## 1998 3 11
## 1999 3 11
## 2000 3 11
## 2001 3 11
## 2002 3 11
## 2003 3 11
## 2004 3 11
## 2005 3 11
## 2006 3 11
## 2007 3 11
## 2008 3 11
## 2009 3 11
## 2010 3 11
## 2011 3 11
## 2012 3 11
## 2013 3 11
## 2014 3 11
## 2015 3 11
## 2016 3 11
## 2017 3 11
## 2018 3 11
## 2019 3 11
## 2020 3 11
## 2021 3 11
## 2022 3 11
## 2023 3 11
## 2024 3 11
## 2025 3 11
## 2026 3 11
## 2027 3 11
## 2028 3 11
## 2029 3 11
## 2030 3 11
## 2031 3 11
## 2032 3 11
## 2033 3 11
## 2034 3 11
## 2035 3 11
## 2036 3 11
## 2037 3 11
## 2038 3 11
## 2039 3 11
## 2040 3 11
## 2041 3 11
## 2042 3 11
## 2043 3 11
## 2044 3 11
## 2045 3 11
## 2046 3 11
## 2047 3 11
## 2048 3 11
## 2049 3 11
## 2050 3 11
## 2051 3 11
## 2052 3 11
## 2053 3 11
## 2054 3 11
## 2055 3 11
## 2056 3 11
## 2057 3 11
## 2058 3 11
## 2059 3 11
## 2060 3 11
## 2061 3 11
## 2062 3 11
## 2063 3 11
## 2064 3 11
## 2065 3 11
## 2066 3 11
## 2067 3 11
## 2068 3 11
## 2069 3 11
## 2070 3 11
## 2071 3 11
## 2072 3 11
## 2073 3 11
## 2074 3 11
## 2075 3 11
## 2076 3 11
## 2077 3 11
## 2078 3 11
## 2079 3 11
## 2080 3 11
## 2081 3 11
## 2082 3 11
## 2083 3 11
## 2084 3 11
## 2085 3 11
## 2086 3 11
## 2087 3 11
## 2088 3 11
## 2089 3 11
## 2090 3 11
## 2091 3 11
## 2092 3 11
## 2093 3 11
## 2094 3 11
## 2095 3 11
## 2096 3 11
## 2097 3 11
## 2098 3 11
## 2099 3 11
## 2100 3 11
## 2101 3 11
## 2102 3 11
## 2103 3 11
## 2104 3 11
## 2105 3 11
## 2106 3 11
## 2107 3 11
## 2108 3 11
## 2109 3 11
## 2110 3 11
## 2111 3 11
## 2112 3 11
## 2113 3 12
## 2114 3 12
## 2115 3 12
## 2116 3 12
## 2117 3 12
## 2118 3 12
## 2119 3 12
## 2120 3 12
## 2121 3 12
## 2122 3 12
## 2123 3 12
## 2124 3 12
## 2125 3 12
## 2126 3 12
## 2127 3 12
## 2128 3 12
## 2129 3 12
## 2130 3 12
## 2131 3 12
## 2132 3 12
## 2133 3 12
## 2134 3 12
## 2135 3 12
## 2136 3 12
## 2137 3 12
## 2138 3 12
## 2139 3 12
## 2140 3 12
## 2141 3 12
## 2142 3 12
## 2143 3 12
## 2144 3 12
## 2145 3 12
## 2146 3 12
## 2147 3 12
## 2148 3 12
## 2149 3 12
## 2150 3 12
## 2151 3 12
## 2152 3 12
## 2153 3 12
## 2154 3 12
## 2155 3 12
## 2156 3 12
## 2157 3 12
## 2158 3 12
## 2159 3 12
## 2160 3 12
## 2161 3 12
## 2162 3 12
## 2163 3 12
## 2164 3 12
## 2165 3 12
## 2166 3 12
## 2167 3 12
## 2168 3 12
## 2169 3 12
## 2170 3 12
## 2171 3 12
## 2172 3 12
## 2173 3 12
## 2174 3 12
## 2175 3 12
## 2176 3 12
## 2177 3 12
## 2178 3 12
## 2179 3 12
## 2180 3 12
## 2181 3 12
## 2182 3 12
## 2183 3 12
## 2184 3 12
## 2185 3 12
## 2186 3 12
## 2187 3 12
## 2188 3 12
## 2189 3 12
## 2190 3 12
## 2191 3 12
## 2192 3 12
## 2193 3 12
## 2194 3 12
## 2195 3 12
## 2196 3 12
## 2197 3 12
## 2198 3 12
## 2199 3 12
## 2200 3 12
## 2201 3 12
## 2202 3 12
## 2203 3 12
## 2204 3 12
## 2205 3 12
## 2206 3 12
## 2207 3 12
## 2208 3 12
## 2209 3 12
## 2210 3 12
## 2211 3 12
## 2212 3 12
## 2213 3 12
## 2214 3 12
## 2215 3 12
## 2216 3 12
## 2217 3 12
## 2218 3 12
## 2219 3 12
## 2220 3 12
## 2221 3 12
## 2222 3 12
## 2223 3 12
## 2224 3 12
## 2225 3 12
## 2226 3 12
## 2227 3 12
## 2228 3 12
## 2229 3 12
## 2230 3 12
## 2231 3 12
## 2232 3 12
## 2233 3 12
## 2234 3 12
## 2235 3 12
## 2236 3 12
## 2237 3 12
## 2238 3 12
## 2239 3 12
## 2240 3 12
## 2241 3 12
## 2242 3 12
## 2243 3 12
## 2244 3 12
## 2245 3 12
## 2246 3 12
## 2247 3 12
## 2248 3 12
## 2249 3 12
## 2250 3 12
## 2251 3 12
## 2252 3 12
## 2253 3 12
## 2254 3 12
## 2255 3 12
## 2256 3 12
## 2257 3 12
## 2258 3 12
## 2259 3 12
## 2260 3 12
## 2261 3 12
## 2262 3 12
## 2263 3 12
## 2264 3 12
## 2265 3 12
## 2266 3 12
## 2267 3 12
## 2268 3 12
## 2269 3 12
## 2270 3 12
## 2271 3 12
## 2272 3 12
## 2273 3 12
## 2274 3 12
## 2275 3 12
## 2276 3 12
## 2277 3 12
## 2278 3 12
## 2279 3 12
## 2280 3 12
## 2281 3 12
## 2282 3 12
## 2283 3 12
## 2284 3 12
## 2285 3 12
## 2286 3 12
## 2287 3 12
## 2288 3 12
## 2289 3 12
## 2290 3 12
## 2291 3 12
## 2292 3 12
## 2293 3 12
## 2294 3 12
## 2295 3 12
## 2296 3 12
## 2297 3 12
## 2298 3 12
## 2299 3 12
## 2300 3 12
## 2301 3 12
## 2302 3 12
## 2303 3 12
## 2304 3 12
## 2305 3 13
## 2306 3 13
## 2307 3 13
## 2308 3 13
## 2309 3 13
## 2310 3 13
## 2311 3 13
## 2312 3 13
## 2313 3 13
## 2314 3 13
## 2315 3 13
## 2316 3 13
## 2317 3 13
## 2318 3 13
## 2319 3 13
## 2320 3 13
## 2321 3 13
## 2322 3 13
## 2323 3 13
## 2324 3 13
## 2325 3 13
## 2326 3 13
## 2327 3 13
## 2328 3 13
## 2329 3 13
## 2330 3 13
## 2331 3 13
## 2332 3 13
## 2333 3 13
## 2334 3 13
## 2335 3 13
## 2336 3 13
## 2337 3 13
## 2338 3 13
## 2339 3 13
## 2340 3 13
## 2341 3 13
## 2342 3 13
## 2343 3 13
## 2344 3 13
## 2345 3 13
## 2346 3 13
## 2347 3 13
## 2348 3 13
## 2349 3 13
## 2350 3 13
## 2351 3 13
## 2352 3 13
## 2353 3 13
## 2354 3 13
## 2355 3 13
## 2356 3 13
## 2357 3 13
## 2358 3 13
## 2359 3 13
## 2360 3 13
## 2361 3 13
## 2362 3 13
## 2363 3 13
## 2364 3 13
## 2365 3 13
## 2366 3 13
## 2367 3 13
## 2368 3 13
## 2369 3 13
## 2370 3 13
## 2371 3 13
## 2372 3 13
## 2373 3 13
## 2374 3 13
## 2375 3 13
## 2376 3 13
## 2377 3 13
## 2378 3 13
## 2379 3 13
## 2380 3 13
## 2381 3 13
## 2382 3 13
## 2383 3 13
## 2384 3 13
## 2385 3 13
## 2386 3 13
## 2387 3 13
## 2388 3 13
## 2389 3 13
## 2390 3 13
## 2391 3 13
## 2392 3 13
## 2393 3 13
## 2394 3 13
## 2395 3 13
## 2396 3 13
## 2397 3 13
## 2398 3 13
## 2399 3 13
## 2400 3 13
## 2401 3 13
## 2402 3 13
## 2403 3 13
## 2404 3 13
## 2405 3 13
## 2406 3 13
## 2407 3 13
## 2408 3 13
## 2409 3 13
## 2410 3 13
## 2411 3 13
## 2412 3 13
## 2413 3 13
## 2414 3 13
## 2415 3 13
## 2416 3 13
## 2417 3 13
## 2418 3 13
## 2419 3 13
## 2420 3 13
## 2421 3 13
## 2422 3 13
## 2423 3 13
## 2424 3 13
## 2425 3 13
## 2426 3 13
## 2427 3 13
## 2428 3 13
## 2429 3 13
## 2430 3 13
## 2431 3 13
## 2432 3 13
## 2433 3 13
## 2434 3 13
## 2435 3 13
## 2436 3 13
## 2437 3 13
## 2438 3 13
## 2439 3 13
## 2440 3 13
## 2441 3 13
## 2442 3 13
## 2443 3 13
## 2444 3 13
## 2445 3 13
## 2446 3 13
## 2447 3 13
## 2448 3 13
## 2449 3 13
## 2450 3 13
## 2451 3 13
## 2452 3 13
## 2453 3 13
## 2454 3 13
## 2455 3 13
## 2456 3 13
## 2457 3 13
## 2458 3 13
## 2459 3 13
## 2460 3 13
## 2461 3 13
## 2462 3 13
## 2463 3 13
## 2464 3 13
## 2465 3 13
## 2466 3 13
## 2467 3 13
## 2468 3 13
## 2469 3 13
## 2470 3 13
## 2471 3 13
## 2472 3 13
## 2473 3 13
## 2474 3 13
## 2475 3 13
## 2476 3 13
## 2477 3 13
## 2478 3 13
## 2479 3 13
## 2480 3 13
## 2481 3 13
## 2482 3 13
## 2483 3 13
## 2484 3 13
## 2485 3 13
## 2486 3 13
## 2487 3 13
## 2488 3 13
## 2489 3 13
## 2490 3 13
## 2491 3 13
## 2492 3 13
## 2493 3 13
## 2494 3 13
## 2495 3 13
## 2496 3 13
## 2497 3 14
## 2498 3 14
## 2499 3 14
## 2500 3 14
## 2501 3 14
## 2502 3 14
## 2503 3 14
## 2504 3 14
## 2505 3 14
## 2506 3 14
## 2507 3 14
## 2508 3 14
## 2509 3 14
## 2510 3 14
## 2511 3 14
## 2512 3 14
## 2513 3 14
## 2514 3 14
## 2515 3 14
## 2516 3 14
## 2517 3 14
## 2518 3 14
## 2519 3 14
## 2520 3 14
## 2521 3 14
## 2522 3 14
## 2523 3 14
## 2524 3 14
## 2525 3 14
## 2526 3 14
## 2527 3 14
## 2528 3 14
## 2529 3 14
## 2530 3 14
## 2531 3 14
## 2532 3 14
## 2533 3 14
## 2534 3 14
## 2535 3 14
## 2536 3 14
## 2537 3 14
## 2538 3 14
## 2539 3 14
## 2540 3 14
## 2541 3 14
## 2542 3 14
## 2543 3 14
## 2544 3 14
## 2545 3 14
## 2546 3 14
## 2547 3 14
## 2548 3 14
## 2549 3 14
## 2550 3 14
## 2551 3 14
## 2552 3 14
## 2553 3 14
## 2554 3 14
## 2555 3 14
## 2556 3 14
## 2557 3 14
## 2558 3 14
## 2559 3 14
## 2560 3 14
## 2561 3 14
## 2562 3 14
## 2563 3 14
## 2564 3 14
## 2565 3 14
## 2566 3 14
## 2567 3 14
## 2568 3 14
## 2569 3 14
## 2570 3 14
## 2571 3 14
## 2572 3 14
## 2573 3 14
## 2574 3 14
## 2575 3 14
## 2576 3 14
## 2577 3 14
## 2578 3 14
## 2579 3 14
## 2580 3 14
## 2581 3 14
## 2582 3 14
## 2583 3 14
## 2584 3 14
## 2585 3 14
## 2586 3 14
## 2587 3 14
## 2588 3 14
## 2589 3 14
## 2590 3 14
## 2591 3 14
## 2592 3 14
## 2593 3 14
## 2594 3 14
## 2595 3 14
## 2596 3 14
## 2597 3 14
## 2598 3 14
## 2599 3 14
## 2600 3 14
## 2601 3 14
## 2602 3 14
## 2603 3 14
## 2604 3 14
## 2605 3 14
## 2606 3 14
## 2607 3 14
## 2608 3 14
## 2609 3 14
## 2610 3 14
## 2611 3 14
## 2612 3 14
## 2613 3 14
## 2614 3 14
## 2615 3 14
## 2616 3 14
## 2617 3 14
## 2618 3 14
## 2619 3 14
## 2620 3 14
## 2621 3 14
## 2622 3 14
## 2623 3 14
## 2624 3 14
## 2625 3 14
## 2626 3 14
## 2627 3 14
## 2628 3 14
## 2629 3 14
## 2630 3 14
## 2631 3 14
## 2632 3 14
## 2633 3 14
## 2634 3 14
## 2635 3 14
## 2636 3 14
## 2637 3 14
## 2638 3 14
## 2639 3 14
## 2640 3 14
## 2641 3 14
## 2642 3 14
## 2643 3 14
## 2644 3 14
## 2645 3 14
## 2646 3 14
## 2647 3 14
## 2648 3 14
## 2649 3 14
## 2650 3 14
## 2651 3 14
## 2652 3 14
## 2653 3 14
## 2654 3 14
## 2655 3 14
## 2656 3 14
## 2657 3 14
## 2658 3 14
## 2659 3 14
## 2660 3 14
## 2661 3 14
## 2662 3 14
## 2663 3 14
## 2664 3 14
## 2665 3 14
## 2666 3 14
## 2667 3 14
## 2668 3 14
## 2669 3 14
## 2670 3 14
## 2671 3 14
## 2672 3 14
## 2673 3 14
## 2674 3 14
## 2675 3 14
## 2676 3 14
## 2677 3 14
## 2678 3 14
## 2679 3 14
## 2680 3 14
## 2681 3 14
## 2682 3 14
## 2683 3 14
## 2684 3 14
## 2685 3 14
## 2686 3 14
## 2687 3 14
## 2688 3 14
## 2689 3 15
## 2690 3 15
## 2691 3 15
## 2692 3 15
## 2693 3 15
## 2694 3 15
## 2695 3 15
## 2696 3 15
## 2697 3 15
## 2698 3 15
## 2699 3 15
## 2700 3 15
## 2701 3 15
## 2702 3 15
## 2703 3 15
## 2704 3 15
## 2705 3 15
## 2706 3 15
## 2707 3 15
## 2708 3 15
## 2709 3 15
## 2710 3 15
## 2711 3 15
## 2712 3 15
## 2713 3 15
## 2714 3 15
## 2715 3 15
## 2716 3 15
## 2717 3 15
## 2718 3 15
## 2719 3 15
## 2720 3 15
## 2721 3 15
## 2722 3 15
## 2723 3 15
## 2724 3 15
## 2725 3 15
## 2726 3 15
## 2727 3 15
## 2728 3 15
## 2729 3 15
## 2730 3 15
## 2731 3 15
## 2732 3 15
## 2733 3 15
## 2734 3 15
## 2735 3 15
## 2736 3 15
## 2737 3 15
## 2738 3 15
## 2739 3 15
## 2740 3 15
## 2741 3 15
## 2742 3 15
## 2743 3 15
## 2744 3 15
## 2745 3 15
## 2746 3 15
## 2747 3 15
## 2748 3 15
## 2749 3 15
## 2750 3 15
## 2751 3 15
## 2752 3 15
## 2753 3 15
## 2754 3 15
## 2755 3 15
## 2756 3 15
## 2757 3 15
## 2758 3 15
## 2759 3 15
## 2760 3 15
## 2761 3 15
## 2762 3 15
## 2763 3 15
## 2764 3 15
## 2765 3 15
## 2766 3 15
## 2767 3 15
## 2768 3 15
## 2769 3 15
## 2770 3 15
## 2771 3 15
## 2772 3 15
## 2773 3 15
## 2774 3 15
## 2775 3 15
## 2776 3 15
## 2777 3 15
## 2778 3 15
## 2779 3 15
## 2780 3 15
## 2781 3 15
## 2782 3 15
## 2783 3 15
## 2784 3 15
## 2785 3 15
## 2786 3 15
## 2787 3 15
## 2788 3 15
## 2789 3 15
## 2790 3 15
## 2791 3 15
## 2792 3 15
## 2793 3 15
## 2794 3 15
## 2795 3 15
## 2796 3 15
## 2797 3 15
## 2798 3 15
## 2799 3 15
## 2800 3 15
## 2801 3 15
## 2802 3 15
## 2803 3 15
## 2804 3 15
## 2805 3 15
## 2806 3 15
## 2807 3 15
## 2808 3 15
## 2809 3 15
## 2810 3 15
## 2811 3 15
## 2812 3 15
## 2813 3 15
## 2814 3 15
## 2815 3 15
## 2816 3 15
## 2817 3 15
## 2818 3 15
## 2819 3 15
## 2820 3 15
## 2821 3 15
## 2822 3 15
## 2823 3 15
## 2824 3 15
## 2825 3 15
## 2826 3 15
## 2827 3 15
## 2828 3 15
## 2829 3 15
## 2830 3 15
## 2831 3 15
## 2832 3 15
## 2833 3 15
## 2834 3 15
## 2835 3 15
## 2836 3 15
## 2837 3 15
## 2838 3 15
## 2839 3 15
## 2840 3 15
## 2841 3 15
## 2842 3 15
## 2843 3 15
## 2844 3 15
## 2845 3 15
## 2846 3 15
## 2847 3 15
## 2848 3 15
## 2849 3 15
## 2850 3 15
## 2851 3 15
## 2852 3 15
## 2853 3 15
## 2854 3 15
## 2855 3 15
## 2856 3 15
## 2857 3 15
## 2858 3 15
## 2859 3 15
## 2860 3 15
## 2861 3 15
## 2862 3 15
## 2863 3 15
## 2864 3 15
## 2865 3 15
## 2866 3 15
## 2867 3 15
## 2868 3 15
## 2869 3 15
## 2870 3 15
## 2871 3 15
## 2872 3 15
## 2873 3 15
## 2874 3 15
## 2875 3 15
## 2876 3 15
## 2877 3 15
## 2878 3 15
## 2879 3 15
## 2880 3 15
## 2881 4 11
## 2882 4 11
## 2883 4 11
## 2884 4 11
## 2885 4 11
## 2886 4 11
## 2887 4 11
## 2888 4 11
## 2889 4 11
## 2890 4 11
## 2891 4 11
## 2892 4 11
## 2893 4 11
## 2894 4 11
## 2895 4 11
## 2896 4 11
## 2897 4 11
## 2898 4 11
## 2899 4 11
## 2900 4 11
## 2901 4 11
## 2902 4 11
## 2903 4 11
## 2904 4 11
## 2905 4 11
## 2906 4 11
## 2907 4 11
## 2908 4 11
## 2909 4 11
## 2910 4 11
## 2911 4 11
## 2912 4 11
## 2913 4 11
## 2914 4 11
## 2915 4 11
## 2916 4 11
## 2917 4 11
## 2918 4 11
## 2919 4 11
## 2920 4 11
## 2921 4 11
## 2922 4 11
## 2923 4 11
## 2924 4 11
## 2925 4 11
## 2926 4 11
## 2927 4 11
## 2928 4 11
## 2929 4 11
## 2930 4 11
## 2931 4 11
## 2932 4 11
## 2933 4 11
## 2934 4 11
## 2935 4 11
## 2936 4 11
## 2937 4 11
## 2938 4 11
## 2939 4 11
## 2940 4 11
## 2941 4 11
## 2942 4 11
## 2943 4 11
## 2944 4 11
## 2945 4 11
## 2946 4 11
## 2947 4 11
## 2948 4 11
## 2949 4 11
## 2950 4 11
## 2951 4 11
## 2952 4 11
## 2953 4 11
## 2954 4 11
## 2955 4 11
## 2956 4 11
## 2957 4 11
## 2958 4 11
## 2959 4 11
## 2960 4 11
## 2961 4 11
## 2962 4 11
## 2963 4 11
## 2964 4 11
## 2965 4 11
## 2966 4 11
## 2967 4 11
## 2968 4 11
## 2969 4 11
## 2970 4 11
## 2971 4 11
## 2972 4 11
## 2973 4 11
## 2974 4 11
## 2975 4 11
## 2976 4 11
## 2977 4 11
## 2978 4 11
## 2979 4 11
## 2980 4 11
## 2981 4 11
## 2982 4 11
## 2983 4 11
## 2984 4 11
## 2985 4 11
## 2986 4 11
## 2987 4 11
## 2988 4 11
## 2989 4 11
## 2990 4 11
## 2991 4 11
## 2992 4 11
## 2993 4 11
## 2994 4 11
## 2995 4 11
## 2996 4 11
## 2997 4 11
## 2998 4 11
## 2999 4 11
## 3000 4 11
## 3001 4 11
## 3002 4 11
## 3003 4 11
## 3004 4 11
## 3005 4 11
## 3006 4 11
## 3007 4 11
## 3008 4 11
## 3009 4 11
## 3010 4 11
## 3011 4 11
## 3012 4 11
## 3013 4 11
## 3014 4 11
## 3015 4 11
## 3016 4 11
## 3017 4 11
## 3018 4 11
## 3019 4 11
## 3020 4 11
## 3021 4 11
## 3022 4 11
## 3023 4 11
## 3024 4 11
## 3025 4 11
## 3026 4 11
## 3027 4 11
## 3028 4 11
## 3029 4 11
## 3030 4 11
## 3031 4 11
## 3032 4 11
## 3033 4 11
## 3034 4 11
## 3035 4 11
## 3036 4 11
## 3037 4 11
## 3038 4 11
## 3039 4 11
## 3040 4 11
## 3041 4 11
## 3042 4 11
## 3043 4 11
## 3044 4 11
## 3045 4 11
## 3046 4 11
## 3047 4 11
## 3048 4 11
## 3049 4 11
## 3050 4 11
## 3051 4 11
## 3052 4 11
## 3053 4 11
## 3054 4 11
## 3055 4 11
## 3056 4 11
## 3057 4 11
## 3058 4 11
## 3059 4 11
## 3060 4 11
## 3061 4 11
## 3062 4 11
## 3063 4 11
## 3064 4 11
## 3065 4 11
## 3066 4 11
## 3067 4 11
## 3068 4 11
## 3069 4 11
## 3070 4 11
## 3071 4 11
## 3072 4 11
## 3073 4 12
## 3074 4 12
## 3075 4 12
## 3076 4 12
## 3077 4 12
## 3078 4 12
## 3079 4 12
## 3080 4 12
## 3081 4 12
## 3082 4 12
## 3083 4 12
## 3084 4 12
## 3085 4 12
## 3086 4 12
## 3087 4 12
## 3088 4 12
## 3089 4 12
## 3090 4 12
## 3091 4 12
## 3092 4 12
## 3093 4 12
## 3094 4 12
## 3095 4 12
## 3096 4 12
## 3097 4 12
## 3098 4 12
## 3099 4 12
## 3100 4 12
## 3101 4 12
## 3102 4 12
## 3103 4 12
## 3104 4 12
## 3105 4 12
## 3106 4 12
## 3107 4 12
## 3108 4 12
## 3109 4 12
## 3110 4 12
## 3111 4 12
## 3112 4 12
## 3113 4 12
## 3114 4 12
## 3115 4 12
## 3116 4 12
## 3117 4 12
## 3118 4 12
## 3119 4 12
## 3120 4 12
## 3121 4 12
## 3122 4 12
## 3123 4 12
## 3124 4 12
## 3125 4 12
## 3126 4 12
## 3127 4 12
## 3128 4 12
## 3129 4 12
## 3130 4 12
## 3131 4 12
## 3132 4 12
## 3133 4 12
## 3134 4 12
## 3135 4 12
## 3136 4 12
## 3137 4 12
## 3138 4 12
## 3139 4 12
## 3140 4 12
## 3141 4 12
## 3142 4 12
## 3143 4 12
## 3144 4 12
## 3145 4 12
## 3146 4 12
## 3147 4 12
## 3148 4 12
## 3149 4 12
## 3150 4 12
## 3151 4 12
## 3152 4 12
## 3153 4 12
## 3154 4 12
## 3155 4 12
## 3156 4 12
## 3157 4 12
## 3158 4 12
## 3159 4 12
## 3160 4 12
## 3161 4 12
## 3162 4 12
## 3163 4 12
## 3164 4 12
## 3165 4 12
## 3166 4 12
## 3167 4 12
## 3168 4 12
## 3169 4 12
## 3170 4 12
## 3171 4 12
## 3172 4 12
## 3173 4 12
## 3174 4 12
## 3175 4 12
## 3176 4 12
## 3177 4 12
## 3178 4 12
## 3179 4 12
## 3180 4 12
## 3181 4 12
## 3182 4 12
## 3183 4 12
## 3184 4 12
## 3185 4 12
## 3186 4 12
## 3187 4 12
## 3188 4 12
## 3189 4 12
## 3190 4 12
## 3191 4 12
## 3192 4 12
## 3193 4 12
## 3194 4 12
## 3195 4 12
## 3196 4 12
## 3197 4 12
## 3198 4 12
## 3199 4 12
## 3200 4 12
## 3201 4 12
## 3202 4 12
## 3203 4 12
## 3204 4 12
## 3205 4 12
## 3206 4 12
## 3207 4 12
## 3208 4 12
## 3209 4 12
## 3210 4 12
## 3211 4 12
## 3212 4 12
## 3213 4 12
## 3214 4 12
## 3215 4 12
## 3216 4 12
## 3217 4 12
## 3218 4 12
## 3219 4 12
## 3220 4 12
## 3221 4 12
## 3222 4 12
## 3223 4 12
## 3224 4 12
## 3225 4 12
## [ reached 'max' / getOption("max.print") -- omitted 6695 rows ]
ds_metaecosystems <- ds_metaecosystems %>%
mutate(
type = case_when(
metaecosystem_type == "Small-Large unconnected" ~ "asymmetric",
metaecosystem_type == "Small-Large meta-ecosystem" ~ "asymmetric",
metaecosystem_type == "Medium-Medium unconnected" ~ "symmetric",
metaecosystem_type == "Medium-Medium meta-ecosystem" ~ "symmetric",
metaecosystem_type == "Small-Small meta-ecosystem" ~ "Small-Small",
metaecosystem_type == "Medium-Medium meta-ecosystem" ~ "Medium-Medium"
))
Here I’m filtering patches to have only the ones with disturbance high.
#Filter data sets according to the global disturbance
ds_individuals = ds_individuals %>%
filter(disturbance == disturbance_global_input)
ds_patches = ds_patches %>%
filter(disturbance == disturbance_global_input)
ds_patches_effect_size = ds_patches_effect_size %>%
filter(disturbance == disturbance_global_input)
ds_metaecosystems = ds_metaecosystems %>%
filter(disturbance == disturbance_global_input)
ds_classes = ds_classes %>%
filter(disturbance == disturbance_global_input)
ds_classes_effect_size = ds_classes_effect_size %>%
filter(disturbance == disturbance_global_input)
metaecosystem_type_i = c("Small-Small meta-ecosystem",
"Medium-Medium meta-ecosystem",
"Medium-Medium unconnected",
"Large-Large meta-ecosystem",
"Small-Large meta-ecosystem",
"Small-Large unconnected")
response_variable = "mean_shannon"
Here we want to look at how this meta-ecosystem variable changed across time by plotting its mean ± 95 confidence interval:
plot.metaecos.points(ds_metaecosystems,
metaecosystem_type_i,
response_variable,
3)
plot.metaecos.replicates(ds_metaecosystems,
metaecosystem_type_i,
response_variable)
response_variable = "bray_curtis"
Here we want to look at how this meta-ecosystem variable changed across time by plotting its mean ± 95 confidence interval:
plot.metaecos.points(ds_metaecosystems,
metaecosystem_type_i,
response_variable,
3)
plot.metaecos.replicates(ds_metaecosystems,
metaecosystem_type_i,
response_variable)
## Warning: Removed 2 rows containing non-finite outside the scale range
## (`stat_summary()`).
response_variable = "metaecosystem_richness"
Here we want to look at how this meta-ecosystem variable changed across time by plotting its mean ± 95 confidence interval:
plot.metaecos.points(ds_metaecosystems,
metaecosystem_type_i,
response_variable,
3)
plot.metaecos.replicates(ds_metaecosystems,
metaecosystem_type_i,
response_variable)
response_variable = "total_metaecosystem_bioarea_mm2"
Here we want to look at how this meta-ecosystem variable changed across time by plotting its mean ± 95 confidence interval:
plot.metaecos.points(ds_metaecosystems,
metaecosystem_type_i,
response_variable,
3)
plot.metaecos.replicates(ds_metaecosystems,
metaecosystem_type_i,
response_variable)
response_variable = "mean_shannon"
metaecosystem_type_i = c("Medium-Medium meta-ecosystem",
"Medium-Medium unconnected",
"Small-Large meta-ecosystem",
"Small-Large unconnected")
Here we want to look at how this meta-ecosystem variable changed across time by plotting its mean ± 95 confidence interval:
plot.metaecos.points(ds_metaecosystems,
metaecosystem_type_i,
response_variable,
3)
plot.metaecos.replicates(ds_metaecosystems,
metaecosystem_type_i,
response_variable)
Following the initial inspection, we proceed to analyse differences among meta-ecosystems. To make it easier to interpret differences, we decided to construct a model for each comparisons we are interested in, which are: asymmetric vs symmetric connected, asymmetric connected vs unconnected, and symmetric connected vs unconnected.
metaecosystem_type_i = c("Small-Large meta-ecosystem",
"Small-Large unconnected")
Our first step in the data analysis involves filtering the data to isolate the relevant data. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure we filtered data the right way.
filtered_data = ds_metaecosystems %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i)
plot.metaecos.points(filtered_data,
metaecosystem_type_i,
response_variable)
Then, given that we have gathered measurements from the same
meta-ecosystem on multiple occasions, we can develop mixed effect models
to examine how the connection influenced this meta-ecosystem variable.
To study the effects of connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
system nr as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | system nr)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | system nr)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | system nr)).
Unconnected meta-ecosystems are made of paired unconnected
ecosystems, which are paired randomly. However, how to pair unconnected
ecosystems can be done in multiple ways, as unconnected ecosystems did
not interact and therefore any combination between ecosystems would be
arbitrary. To make sure that the random combination we selected did not
bias our results, we run all the possible combinations of ecosystems
constituting unconnected meta-ecosystems. The ecosystem combinations are
into the objects unconnected_combinations_sets (Data >
Meta-ecosystems). We therefore compute a p-value for each unconnected
ecosystems combination, creating a p-value distribution. We keep as
p-value of the comparison the mean of such distributions.
If you see “Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel = ## 1e-15, : unused control arguments ignored”, Ignore it. It just means that you didn’t pass the control argument to the Nelder_Mead optimiser, so it uses the default.
unconnected_combinations_sets_filtered = unconnected_combinations_sets %>%
filter(disturbance == disturbance_global_input,
metaecosystem_type %in% metaecosystem_type_i)
n_sets = unconnected_combinations_sets_filtered %>%
pull(set) %>%
max()
iterated_results_table = data.frame(Response = as.character(NA),
Levels = as.character(NA),
ΔAIC_full = NA,
p_full = NA,
ΔR2_full = NA,
ΔAIC_fix = NA,
p_fix = NA,
ΔR2_fix = NA,
combination_set = NA,
system_nr_unconnected_systems = as.character(NA)) %>%
slice(-1)
for (set_input in 1:n_sets) {
system_nr_unconnected_systems_input = unconnected_combinations_sets_filtered %>%
filter(metaecosystem_type %in% metaecosystem_type_i,
connection == "unconnected",
set == set_input) %>%
pull(system_nr)
filtered_data = ds_metaecosystems %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i,
connection == "connected" |
(connection == "unconnected" &
system_nr %in% system_nr_unconnected_systems_input))
null_model = lmer(
get(response_variable) ~
day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input)))
full_model = lmer(
get(response_variable) ~
day +
connection +
connection:day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input)))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
reduced_model = lmer(
get(response_variable) ~
day +
connection +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input)))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
iterated_results_table = fill.results.table(iterated_results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed)
iterated_results_table$set[nrow(iterated_results_table)] =
set_input
iterated_results_table$system_nr_unconnected_systems[nrow(iterated_results_table)] =
paste(system_nr_unconnected_systems_input, collapse = " ")
}
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.2e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.6e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.5e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.2e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -6.7e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -6.7e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.7e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.0e-02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -4.4e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.4e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.2e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.6e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.1e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.1e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.2e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.1e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.4e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -7.2e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.3e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.7e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.6e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -5.4e-01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.8e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.9e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -4.3e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -4.3e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.3e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## Model failed to converge with max|grad| = 0.00482332 (tol = 0.002, component 1)
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.1e-01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.7e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -6.3e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -6.5e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -7.5e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -6.9e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -6.6e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.4e-01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.4e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.2e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.4e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -4.6e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.1e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -4.1e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.1e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.7e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.9e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.6e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.8e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -8.6e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -5.4e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -5.8e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.4e-01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.1e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.6e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.6e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## Model failed to converge with max|grad| = 0.0147445 (tol = 0.002, component 1)
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.4e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -7.0e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.7e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.4e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -6.3e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -5.8e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
Full vs null model
model_stats_full = data.frame(
deltaAIC = mean(iterated_results_table$ΔAIC_full),
p_value = mean(iterated_results_table$p_full),
R2 = NA
)
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -1.7 0.061 * weak
hist(iterated_results_table$ΔAIC_full, main = "Distribution of ΔAIC of the full model.")
hist(iterated_results_table$p_full, main = "Distribution of p-values of the full model.")
iterated_results_table %>%
select(system_nr_unconnected_systems,
ΔAIC_full) %>%
arrange(ΔAIC_full)
## system_nr_unconnected_systems ΔAIC_full
## 1 1030 1031 1037 1044 -3.2658662
## 2 1030 1031 1039 1042 -3.1902927
## 3 1026 1035 1037 1044 -3.1184539
## 4 1026 1035 1039 1042 -3.0498505
## 5 1029 1031 1040 1042 -2.9582525
## 6 1027 1031 1040 1044 -2.9161783
## 7 1029 1035 1036 1042 -2.8370408
## 8 1027 1035 1036 1044 -2.7773951
## 9 1026 1034 1040 1042 -2.7516252
## 10 1029 1031 1037 1045 -2.7318940
## 11 1030 1033 1037 1044 -2.7253151
## 12 1030 1034 1036 1042 -2.7137428
## 13 1030 1032 1036 1044 -2.7114029
## 14 1027 1031 1039 1045 -2.6823829
## 15 1030 1033 1039 1042 -2.6125976
## 16 1026 1032 1040 1044 -2.6074367
## 17 1028 1035 1037 1044 -2.5148704
## 18 1026 1033 1037 1044 -2.5148462
## 19 1026 1034 1037 1045 -2.5107510
## 20 1026 1032 1039 1045 -2.4777456
## 21 1028 1031 1037 1044 -2.4644361
## 22 1028 1035 1039 1042 -2.3997450
## 23 1029 1033 1040 1042 -2.3883546
## 24 1027 1033 1040 1044 -2.3422727
## 25 1026 1033 1039 1042 -2.3223480
## 26 1029 1035 1037 1041 -2.2911892
## 27 1028 1031 1039 1042 -2.2608060
## 28 1029 1033 1037 1045 -2.2388491
## 29 1027 1035 1039 1041 -2.2329835
## 30 1030 1034 1037 1041 -2.1858149
## 31 1030 1033 1036 1044 -2.1815047
## 32 1030 1032 1039 1041 -2.1812818
## 33 1029 1032 1036 1045 -2.1666678
## 34 1027 1034 1036 1045 -2.1360380
## 35 1027 1033 1036 1044 -2.1353277
## 36 1027 1033 1039 1045 -2.1347409
## 37 1028 1032 1040 1044 -2.1315380
## 38 1028 1034 1040 1042 -2.1114067
## 39 1029 1033 1036 1042 -2.1107839
## 40 1026 1033 1040 1044 -2.0926051
## 41 1029 1035 1038 1042 -2.0353298
## 42 1028 1031 1040 1044 -2.0241523
## 43 1028 1035 1036 1044 -1.9870485
## 44 1028 1032 1036 1044 -1.9830983
## 45 1028 1034 1037 1045 -1.9598801
## 46 1026 1033 1039 1045 -1.9486814
## 47 1029 1032 1040 1041 -1.9381692
## 48 1027 1035 1038 1044 -1.9306806
## 49 1030 1032 1038 1044 -1.9295017
## 50 1030 1034 1038 1042 -1.9220500
## 51 1028 1032 1039 1045 -1.9218019
## 52 1030 1031 1038 1044 -1.9169879
## 53 1027 1034 1040 1041 -1.9074780
## 54 1028 1031 1039 1045 -1.8794146
## 55 1027 1031 1038 1044 -1.8782998
## 56 1029 1031 1038 1042 -1.8673505
## 57 1028 1034 1036 1042 -1.8480452
## 58 1026 1035 1038 1044 -1.8019937
## 59 1029 1033 1037 1041 -1.7843168
## 60 1026 1032 1038 1044 -1.7648774
## 61 1030 1033 1039 1041 -1.7338144
## 62 1029 1033 1036 1045 -1.6803511
## 63 1026 1034 1038 1042 -1.6750491
## 64 1027 1033 1039 1041 -1.5668099
## 65 1028 1035 1039 1041 -1.5647583
## 66 1028 1032 1039 1041 -1.5639659
## 67 1030 1033 1036 1042 -1.5109156
## 68 1026 1033 1037 1045 -1.5017169
## 69 1029 1033 1040 1041 -1.4493556
## 70 1029 1032 1038 1045 -1.4477843
## 71 1026 1033 1040 1042 -1.4287577
## 72 1027 1034 1038 1045 -1.4224364
## 73 1028 1034 1036 1045 -1.4035177
## 74 1029 1031 1038 1045 -1.4007823
## 75 1028 1031 1037 1045 -1.3837852
## 76 1028 1031 1040 1042 -1.3837003
## 77 1028 1034 1037 1041 -1.3704474
## 78 1029 1035 1037 1043 -1.3447447
## 79 1028 1035 1036 1042 -1.3379690
## 80 1030 1031 1038 1042 -1.3160477
## 81 1027 1035 1039 1043 -1.2746212
## 82 1030 1032 1039 1043 -1.2667283
## 83 1030 1031 1039 1043 -1.2581718
## 84 1027 1031 1039 1043 -1.2407733
## 85 1030 1034 1037 1043 -1.2155303
## 86 1026 1034 1038 1045 -1.2151508
## 87 1026 1035 1038 1042 -1.2088780
## 88 1029 1031 1037 1043 -1.2066846
## 89 1030 1033 1037 1041 -1.2051259
## 90 1028 1034 1040 1041 -1.1992563
## 91 1026 1032 1039 1043 -1.1679179
## 92 1026 1035 1039 1043 -1.1632386
## 93 1027 1033 1036 1045 -1.1346786
## 94 1029 1035 1038 1041 -1.0874779
## 95 1029 1032 1038 1041 -1.0622404
## 96 1026 1034 1037 1043 -1.0577309
## 97 1029 1032 1040 1043 -1.0517986
## 98 1028 1035 1037 1041 -1.0447430
## 99 1029 1032 1036 1043 -1.0353358
## 100 1027 1034 1040 1043 -1.0231825
## 101 1027 1034 1038 1041 -1.0063826
## 102 1030 1034 1038 1041 -0.9975399
## 103 1029 1031 1040 1043 -0.9887564
## 104 1028 1032 1036 1045 -0.9522282
## 105 1027 1031 1038 1045 -0.9286757
## 106 1027 1033 1040 1041 -0.9069473
## 107 1029 1035 1036 1043 -0.8866580
## 108 1026 1034 1040 1043 -0.8337482
## 109 1027 1034 1036 1043 -0.8147813
## 110 1030 1034 1036 1043 -0.7999913
## 111 1030 1031 1037 1043 -0.7969388
## 112 1026 1032 1038 1045 -0.7962529
## 113 1028 1032 1040 1041 -0.7396395
## 114 1026 1035 1037 1043 -0.7119218
## 115 1027 1035 1038 1041 -0.6161209
## 116 1030 1032 1038 1041 -0.5240635
## 117 1027 1031 1040 1043 -0.5222448
## 118 1027 1035 1036 1043 -0.4430857
## 119 1026 1032 1040 1043 -0.4377593
## 120 1030 1032 1036 1043 -0.3648467
Reduced vs null model
model_stats_fixed = data.frame(deltaAIC = mean(iterated_results_table$ΔAIC_fix),
p_value = mean(iterated_results_table$p_fix),
R2 = NA)
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -3.6 0.019 ** moderate
hist(iterated_results_table$ΔAIC_fix, main = "Distribution of ΔAIC of the reduced model.")
hist(iterated_results_table$p_fix, main = "Distribution of p-values of the reduced model.")
iterated_results_table %>%
select(system_nr_unconnected_systems,
ΔAIC_fix) %>%
arrange(ΔAIC_fix)
## system_nr_unconnected_systems ΔAIC_fix
## 1 1030 1031 1037 1044 -5.146101
## 2 1030 1031 1039 1042 -5.072250
## 3 1026 1035 1037 1044 -5.001249
## 4 1026 1035 1039 1042 -4.934501
## 5 1029 1031 1040 1042 -4.847019
## 6 1027 1031 1040 1044 -4.797015
## 7 1029 1035 1036 1042 -4.720641
## 8 1026 1034 1040 1042 -4.640096
## 9 1030 1033 1037 1044 -4.620535
## 10 1029 1031 1037 1045 -4.612677
## 11 1027 1035 1036 1044 -4.598583
## 12 1030 1034 1036 1042 -4.595058
## 13 1027 1031 1039 1045 -4.558706
## 14 1030 1033 1039 1042 -4.509394
## 15 1026 1033 1037 1044 -4.502599
## 16 1026 1032 1040 1044 -4.480598
## 17 1030 1032 1036 1044 -4.458855
## 18 1028 1031 1037 1044 -4.452169
## 19 1028 1035 1037 1044 -4.411982
## 20 1026 1034 1037 1045 -4.391531
## 21 1026 1032 1039 1045 -4.351626
## 22 1026 1033 1039 1042 -4.310219
## 23 1028 1035 1039 1042 -4.298733
## 24 1029 1033 1040 1042 -4.288402
## 25 1028 1031 1039 1042 -4.248685
## 26 1027 1033 1040 1044 -4.236581
## 27 1029 1035 1037 1041 -4.169475
## 28 1029 1033 1037 1045 -4.134178
## 29 1027 1033 1036 1044 -4.121890
## 30 1030 1033 1036 1044 -4.110743
## 31 1029 1033 1036 1042 -4.098189
## 32 1030 1034 1037 1041 -4.060567
## 33 1027 1035 1039 1041 -4.055340
## 34 1029 1032 1036 1045 -4.036830
## 35 1026 1033 1040 1044 -4.026054
## 36 1027 1033 1039 1045 -4.024871
## 37 1028 1032 1040 1044 -4.024487
## 38 1028 1034 1040 1042 -4.012633
## 39 1027 1034 1036 1045 -4.008396
## 40 1028 1032 1036 1044 -3.969436
## 41 1028 1031 1040 1044 -3.957528
## 42 1030 1032 1039 1041 -3.955223
## 43 1029 1035 1038 1042 -3.934064
## 44 1028 1035 1036 1044 -3.917866
## 45 1026 1033 1039 1045 -3.880276
## 46 1029 1031 1038 1042 -3.854964
## 47 1028 1034 1037 1045 -3.854439
## 48 1030 1031 1038 1044 -3.848351
## 49 1028 1034 1036 1042 -3.835532
## 50 1027 1035 1038 1044 -3.818737
## 51 1030 1034 1038 1042 -3.818707
## 52 1029 1032 1040 1041 -3.814186
## 53 1028 1031 1039 1045 -3.810866
## 54 1028 1032 1039 1045 -3.809397
## 55 1027 1031 1038 1044 -3.795204
## 56 1027 1034 1040 1041 -3.785215
## 57 1029 1033 1037 1041 -3.771427
## 58 1026 1032 1038 1044 -3.751469
## 59 1026 1035 1038 1044 -3.734939
## 60 1030 1032 1038 1044 -3.701263
## 61 1027 1033 1039 1041 -3.686460
## 62 1030 1033 1039 1041 -3.663657
## 63 1026 1034 1038 1042 -3.662746
## 64 1029 1033 1036 1045 -3.611549
## 65 1028 1032 1039 1041 -3.550160
## 66 1028 1035 1039 1041 -3.495888
## 67 1030 1033 1036 1042 -3.463478
## 68 1026 1033 1037 1045 -3.456018
## 69 1026 1033 1040 1042 -3.384269
## 70 1029 1033 1040 1041 -3.383492
## 71 1028 1034 1037 1041 -3.356039
## 72 1028 1031 1040 1042 -3.339327
## 73 1028 1031 1037 1045 -3.337990
## 74 1029 1031 1038 1045 -3.334041
## 75 1029 1032 1038 1045 -3.334018
## 76 1028 1034 1036 1045 -3.333319
## 77 1027 1034 1038 1045 -3.308222
## 78 1028 1035 1036 1042 -3.291612
## 79 1030 1031 1038 1042 -3.269202
## 80 1029 1035 1037 1043 -3.235979
## 81 1027 1031 1039 1043 -3.227334
## 82 1029 1031 1037 1043 -3.192817
## 83 1030 1031 1039 1043 -3.176099
## 84 1026 1035 1038 1042 -3.163077
## 85 1027 1035 1039 1043 -3.159892
## 86 1030 1033 1037 1041 -3.157110
## 87 1026 1032 1039 1043 -3.154114
## 88 1026 1034 1038 1045 -3.148024
## 89 1028 1034 1040 1041 -3.131936
## 90 1026 1034 1037 1043 -3.117013
## 91 1030 1034 1037 1043 -3.098275
## 92 1026 1035 1039 1043 -3.094370
## 93 1030 1032 1039 1043 -3.090770
## 94 1027 1033 1036 1045 -3.084860
## 95 1029 1032 1038 1041 -3.048260
## 96 1029 1032 1036 1043 -3.020773
## 97 1029 1035 1038 1041 -3.020002
## 98 1028 1035 1037 1041 -2.997532
## 99 1027 1034 1038 1041 -2.992763
## 100 1029 1032 1040 1043 -2.940788
## 101 1030 1034 1038 1041 -2.927918
## 102 1029 1031 1040 1043 -2.923744
## 103 1027 1034 1040 1043 -2.915505
## 104 1028 1032 1036 1045 -2.901341
## 105 1027 1031 1038 1045 -2.879878
## 106 1027 1033 1040 1041 -2.859200
## 107 1029 1035 1036 1043 -2.817868
## 108 1027 1034 1036 1043 -2.800805
## 109 1026 1034 1040 1043 -2.768333
## 110 1030 1031 1037 1043 -2.748578
## 111 1026 1032 1038 1045 -2.746394
## 112 1030 1034 1036 1043 -2.728791
## 113 1028 1032 1040 1041 -2.690826
## 114 1026 1035 1037 1043 -2.664620
## 115 1027 1035 1038 1041 -2.566863
## 116 1027 1031 1040 1043 -2.473529
## 117 1030 1032 1038 1041 -2.469824
## 118 1027 1035 1036 1043 -2.393025
## 119 1026 1032 1040 1043 -2.389230
## 120 1030 1032 1036 1043 -2.358171
metaecosystem_type_i = c("Medium-Medium meta-ecosystem",
"Medium-Medium unconnected")
Our first step in the data analysis involves filtering the data to isolate the relevant data. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure we filtered data the right way.
filtered_data = ds_metaecosystems %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i)
plot.metaecos.points(filtered_data,
metaecosystem_type_i,
response_variable)
Then, given that we have gathered measurements from the same
meta-ecosystem on multiple occasions, we can develop mixed effect models
to examine how the connection influenced this meta-ecosystem variable.
To study the effects of connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
system nr as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | system nr)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | system nr)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | system nr)).
Unconnected meta-ecosystems are made of paired unconnected
ecosystems, which are paired randomly. However, how to pair unconnected
ecosystems can be done in multiple ways, as unconnected ecosystems did
not interact and therefore any combination between ecosystems would be
arbitrary. To make sure that the random combination we selected did not
bias our results, we run all the possible combinations of ecosystems
constituting unconnected meta-ecosystems. The ecosystem combinations are
into the objects unconnected_combinations_sets (Data >
Meta-ecosystems). We therefore compute a p-value for each unconnected
ecosystems combination, creating a p-value distribution. We keep as
p-value of the comparison the mean of such distributions.
If you see “Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel = ## 1e-15, : unused control arguments ignored”, Ignore it. It just means that you didn’t pass the control argument to the Nelder_Mead optimiser, so it uses the default.
unconnected_combinations_sets_filtered = unconnected_combinations_sets %>%
filter(disturbance == disturbance_global_input,
metaecosystem_type %in% metaecosystem_type_i)
n_sets = unconnected_combinations_sets_filtered %>%
pull(set) %>%
max()
iterated_results_table = data.frame(Response = as.character(NA),
Levels = as.character(NA),
ΔAIC_full = NA,
p_full = NA,
ΔR2_full = NA,
ΔAIC_fix = NA,
p_fix = NA,
ΔR2_fix = NA,
combination_set = NA,
system_nr_unconnected_systems = as.character(NA)) %>%
slice(-1)
for (set_input in 1:n_sets) {
system_nr_unconnected_systems_input = unconnected_combinations_sets_filtered %>%
filter(metaecosystem_type %in% metaecosystem_type_i,
connection == "unconnected",
set == set_input) %>%
pull(system_nr)
filtered_data = ds_metaecosystems %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i,
connection == "connected" |
(connection == "unconnected" &
system_nr %in% system_nr_unconnected_systems_input))
null_model = lmer(
get(response_variable) ~
day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input)))
full_model = lmer(
get(response_variable) ~
day +
connection +
connection:day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input)))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
reduced_model = lmer(
get(response_variable) ~
day +
connection +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input)))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
iterated_results_table = fill.results.table(iterated_results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed)
iterated_results_table$set[nrow(iterated_results_table)] =
set_input
iterated_results_table$system_nr_unconnected_systems[nrow(iterated_results_table)] =
paste(system_nr_unconnected_systems_input, collapse = " ")
}
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.2e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.0e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.2e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.0e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
Full vs null model
model_stats_full = data.frame(
deltaAIC = mean(iterated_results_table$ΔAIC_full),
p_value = mean(iterated_results_table$p_full),
R2 = NA
)
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 0.9 0.225 none
hist(iterated_results_table$ΔAIC_full, main = "Distribution of ΔAIC of the full model.")
hist(iterated_results_table$p_full, main = "Distribution of p-values of the full model.")
iterated_results_table %>%
select(system_nr_unconnected_systems,
ΔAIC_full) %>%
arrange(ΔAIC_full)
## system_nr_unconnected_systems ΔAIC_full
## 1 1058 1062 -0.4481346
## 2 1062 1058 -0.4481346
## 3 1056 1065 -0.4075034
## 4 1065 1056 -0.4075034
## 5 1059 1061 -0.1183263
## 6 1061 1059 -0.1183263
## 7 1057 1062 0.5109625
## 8 1062 1057 0.5109625
## 9 1057 1061 0.5707120
## 10 1061 1057 0.5707120
## 11 1056 1064 0.6454787
## 12 1064 1056 0.6454787
## 13 1059 1060 0.7472458
## 14 1060 1059 0.7472458
## 15 1057 1065 0.7630824
## 16 1065 1057 0.7630824
## 17 1058 1060 0.7757166
## 18 1060 1058 0.7757166
## 19 1056 1063 1.0166883
## 20 1063 1056 1.0166883
## 21 1058 1064 1.1140341
## 22 1064 1058 1.1140341
## 23 1059 1063 1.4921890
## 24 1063 1059 1.4921890
## 25 1060 1065 1.9526951
## 26 1065 1060 1.9526951
## 27 1061 1064 2.0178706
## 28 1064 1061 2.0178706
## 29 1062 1063 2.2088481
## 30 1063 1062 2.2088481
Reduced vs null model
model_stats_fixed = data.frame(deltaAIC = mean(iterated_results_table$ΔAIC_fix),
p_value = mean(iterated_results_table$p_fix),
R2 = NA)
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -0.6 0.115 none
hist(iterated_results_table$ΔAIC_fix, main = "Distribution of ΔAIC of the reduced model.")
hist(iterated_results_table$p_fix, main = "Distribution of p-values of the reduced model.")
iterated_results_table %>%
select(system_nr_unconnected_systems,
ΔAIC_fix) %>%
arrange(ΔAIC_fix)
## system_nr_unconnected_systems ΔAIC_fix
## 1 1058 1062 -1.59065258
## 2 1062 1058 -1.59065258
## 3 1057 1062 -1.42882696
## 4 1062 1057 -1.42882696
## 5 1056 1064 -1.28926810
## 6 1064 1056 -1.28926810
## 7 1056 1065 -1.28719394
## 8 1065 1056 -1.28719394
## 9 1059 1061 -1.28604826
## 10 1061 1059 -1.28604826
## 11 1059 1060 -1.20038948
## 12 1060 1059 -1.20038948
## 13 1057 1065 -0.73659724
## 14 1065 1057 -0.73659724
## 15 1058 1064 -0.62129435
## 16 1064 1058 -0.62129435
## 17 1057 1061 -0.25418908
## 18 1061 1057 -0.25418908
## 19 1059 1063 -0.16044582
## 20 1063 1059 -0.16044582
## 21 1058 1060 -0.11351080
## 22 1060 1058 -0.11351080
## 23 1060 1065 0.01814328
## 24 1065 1060 0.01814328
## 25 1061 1064 0.08004895
## 26 1064 1061 0.08004895
## 27 1056 1063 0.19667134
## 28 1063 1056 0.19667134
## 29 1062 1063 0.26649537
## 30 1063 1062 0.26649537
Following the initial inspection, we proceed to analyse differences among meta-ecosystems. To make it easier to interpret differences, we decided to construct a model for each comparisons we are interested in, which are: asymmetric vs symmetric connected, asymmetric connected vs unconnected, and symmetric connected vs unconnected.
response_variable = "bray_curtis"
metaecosystem_type_i = c("Medium-Medium meta-ecosystem",
"Medium-Medium unconnected",
"Small-Large meta-ecosystem",
"Small-Large unconnected")
Here we want to look at how this meta-ecosystem variable changed across time by plotting its mean ± 95 confidence interval:
plot.metaecos.points(ds_metaecosystems,
metaecosystem_type_i,
response_variable,
3)
plot.metaecos.replicates(ds_metaecosystems,
metaecosystem_type_i,
response_variable)
metaecosystem_type_i = c("Small-Large meta-ecosystem",
"Small-Large unconnected")
Our first step in the data analysis involves filtering the data to isolate the relevant data. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure we filtered data the right way.
filtered_data = ds_metaecosystems %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i)
plot.metaecos.points(filtered_data,
metaecosystem_type_i,
response_variable)
Then, given that we have gathered measurements from the same
meta-ecosystem on multiple occasions, we can develop mixed effect models
to examine how the connection influenced this meta-ecosystem variable.
To study the effects of connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
system nr as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | system nr)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | system nr)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | system nr)).
Unconnected meta-ecosystems are made of paired unconnected
ecosystems, which are paired randomly. However, how to pair unconnected
ecosystems can be done in multiple ways, as unconnected ecosystems did
not interact and therefore any combination between ecosystems would be
arbitrary. To make sure that the random combination we selected did not
bias our results, we run all the possible combinations of ecosystems
constituting unconnected meta-ecosystems. The ecosystem combinations are
into the objects unconnected_combinations_sets (Data >
Meta-ecosystems). We therefore compute a p-value for each unconnected
ecosystems combination, creating a p-value distribution. We keep as
p-value of the comparison the mean of such distributions.
If you see “Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel = ## 1e-15, : unused control arguments ignored”, Ignore it. It just means that you didn’t pass the control argument to the Nelder_Mead optimiser, so it uses the default.
unconnected_combinations_sets_filtered = unconnected_combinations_sets %>%
filter(disturbance == disturbance_global_input,
metaecosystem_type %in% metaecosystem_type_i)
n_sets = unconnected_combinations_sets_filtered %>%
pull(set) %>%
max()
iterated_results_table = data.frame(Response = as.character(NA),
Levels = as.character(NA),
ΔAIC_full = NA,
p_full = NA,
ΔR2_full = NA,
ΔAIC_fix = NA,
p_fix = NA,
ΔR2_fix = NA,
combination_set = NA,
system_nr_unconnected_systems = as.character(NA)) %>%
slice(-1)
for (set_input in 1:n_sets) {
system_nr_unconnected_systems_input = unconnected_combinations_sets_filtered %>%
filter(metaecosystem_type %in% metaecosystem_type_i,
connection == "unconnected",
set == set_input) %>%
pull(system_nr)
filtered_data = ds_metaecosystems %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i,
connection == "connected" |
(connection == "unconnected" &
system_nr %in% system_nr_unconnected_systems_input))
null_model = lmer(
get(response_variable) ~
day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input)))
full_model = lmer(
get(response_variable) ~
day +
connection +
connection:day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input)))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
reduced_model = lmer(
get(response_variable) ~
day +
connection +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input)))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
iterated_results_table = fill.results.table(iterated_results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed)
iterated_results_table$set[nrow(iterated_results_table)] =
set_input
iterated_results_table$system_nr_unconnected_systems[nrow(iterated_results_table)] =
paste(system_nr_unconnected_systems_input, collapse = " ")
}
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.7e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## Model failed to converge with max|grad| = 0.00397541 (tol = 0.002, component 1)
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -8.8e-01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.7e-01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.0e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.6e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -5.7e-01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.3e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.5e-01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.5e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.6e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## Model failed to converge with max|grad| = 0.00280091 (tol = 0.002, component 1)
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -4.2e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -5.7e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## Model failed to converge with max|grad| = 0.00259059 (tol = 0.002, component 1)
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -3.9e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.7e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.8e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -4.1e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -5.9e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -4.7e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -2.2e-01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.5e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -5.1e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.4e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -6.7e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.4e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## Model failed to converge with max|grad| = 0.0111113 (tol = 0.002, component 1)
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -6.9e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.5e+01
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## Model failed to converge with max|grad| = 0.00233093 (tol = 0.002, component 1)
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -7.2e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -5.9e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
Full vs null model
model_stats_full = data.frame(
deltaAIC = mean(iterated_results_table$ΔAIC_full),
p_value = mean(iterated_results_table$p_full),
R2 = NA
)
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -3.3 0.027 ** moderate
hist(iterated_results_table$ΔAIC_full, main = "Distribution of ΔAIC of the full model.")
hist(iterated_results_table$p_full, main = "Distribution of p-values of the full model.")
iterated_results_table %>%
select(system_nr_unconnected_systems,
ΔAIC_full) %>%
arrange(ΔAIC_full)
## system_nr_unconnected_systems ΔAIC_full
## 1 1027 1033 1040 1044 -5.131031
## 2 1027 1034 1040 1043 -4.977195
## 3 1027 1034 1040 1041 -4.905636
## 4 1027 1031 1040 1044 -4.812797
## 5 1027 1033 1040 1041 -4.717979
## 6 1027 1034 1038 1041 -4.715167
## 7 1027 1034 1036 1045 -4.670136
## 8 1027 1035 1036 1044 -4.662253
## 9 1027 1033 1036 1044 -4.637807
## 10 1027 1034 1036 1043 -4.554477
## 11 1027 1031 1040 1043 -4.474211
## 12 1027 1033 1036 1045 -4.436319
## 13 1027 1033 1039 1045 -4.344398
## 14 1027 1035 1036 1043 -4.315984
## 15 1027 1035 1039 1043 -4.204646
## 16 1027 1035 1039 1041 -4.145796
## 17 1029 1032 1040 1043 -4.133475
## 18 1027 1033 1039 1041 -4.119206
## 19 1029 1032 1040 1041 -4.099971
## 20 1027 1031 1039 1045 -4.065356
## 21 1030 1032 1036 1044 -4.000025
## 22 1029 1033 1040 1041 -3.923811
## 23 1027 1031 1039 1043 -3.877826
## 24 1027 1035 1038 1044 -3.850639
## 25 1029 1032 1036 1045 -3.837177
## 26 1027 1034 1038 1045 -3.836793
## 27 1030 1033 1036 1044 -3.794418
## 28 1029 1031 1040 1043 -3.701014
## 29 1030 1032 1036 1043 -3.683937
## 30 1029 1032 1036 1043 -3.683740
## 31 1028 1032 1040 1044 -3.674511
## 32 1026 1032 1040 1044 -3.632629
## 33 1030 1034 1036 1043 -3.631710
## 34 1030 1032 1039 1043 -3.628881
## 35 1030 1032 1039 1041 -3.617396
## 36 1029 1033 1036 1045 -3.600168
## 37 1026 1033 1040 1044 -3.551073
## 38 1027 1031 1038 1044 -3.539664
## 39 1029 1033 1040 1042 -3.533412
## 40 1027 1035 1038 1041 -3.502220
## 41 1030 1033 1039 1041 -3.479676
## 42 1027 1031 1038 1045 -3.456072
## 43 1029 1035 1036 1043 -3.452945
## 44 1028 1031 1040 1044 -3.447980
## 45 1028 1032 1040 1041 -3.429058
## 46 1028 1034 1040 1041 -3.411945
## 47 1029 1031 1040 1042 -3.403523
## 48 1030 1033 1037 1044 -3.385498
## 49 1026 1032 1040 1043 -3.358420
## 50 1026 1034 1040 1043 -3.345094
## 51 1030 1032 1038 1044 -3.325410
## 52 1030 1031 1037 1044 -3.313350
## 53 1030 1031 1039 1043 -3.283020
## 54 1030 1034 1036 1042 -3.209263
## 55 1030 1034 1037 1041 -3.195463
## 56 1030 1033 1037 1041 -3.186302
## 57 1030 1033 1039 1042 -3.160470
## 58 1030 1033 1036 1042 -3.159552
## 59 1030 1034 1037 1043 -3.155227
## 60 1029 1032 1038 1045 -3.154626
## 61 1029 1033 1037 1045 -3.153191
## 62 1028 1034 1040 1042 -3.143799
## 63 1028 1031 1040 1042 -3.140252
## 64 1026 1033 1040 1042 -3.138249
## 65 1028 1032 1036 1044 -3.137845
## 66 1028 1032 1036 1045 -3.104180
## 67 1026 1034 1040 1042 -3.104065
## 68 1030 1031 1037 1043 -3.085122
## 69 1028 1035 1036 1044 -3.082182
## 70 1028 1032 1039 1045 -3.079951
## 71 1029 1031 1037 1045 -3.079872
## 72 1028 1034 1036 1045 -3.071368
## 73 1030 1031 1038 1044 -3.071277
## 74 1030 1031 1039 1042 -3.066697
## 75 1030 1032 1038 1041 -3.054198
## 76 1026 1032 1039 1045 -3.042656
## 77 1030 1034 1038 1041 -3.017531
## 78 1029 1035 1036 1042 -3.005537
## 79 1029 1035 1037 1041 -2.997568
## 80 1026 1033 1039 1045 -2.978107
## 81 1029 1033 1036 1042 -2.977804
## 82 1029 1035 1037 1043 -2.972028
## 83 1029 1032 1038 1041 -2.943027
## 84 1029 1033 1037 1041 -2.938318
## 85 1028 1031 1039 1045 -2.903679
## 86 1029 1031 1038 1045 -2.859475
## 87 1028 1035 1039 1041 -2.856092
## 88 1028 1032 1039 1041 -2.854888
## 89 1028 1031 1037 1045 -2.854281
## 90 1029 1035 1038 1041 -2.838835
## 91 1029 1031 1037 1043 -2.828815
## 92 1028 1035 1037 1044 -2.819852
## 93 1026 1032 1039 1043 -2.806642
## 94 1026 1033 1037 1045 -2.804241
## 95 1028 1034 1037 1045 -2.795984
## 96 1026 1035 1039 1043 -2.785781
## 97 1026 1035 1037 1044 -2.780723
## 98 1026 1034 1037 1045 -2.754030
## 99 1028 1031 1037 1044 -2.727819
## 100 1030 1034 1038 1042 -2.713690
## 101 1026 1033 1037 1044 -2.711566
## 102 1028 1035 1037 1041 -2.699511
## 103 1030 1031 1038 1042 -2.677046
## 104 1028 1035 1039 1042 -2.634773
## 105 1028 1035 1036 1042 -2.620015
## 106 1026 1035 1039 1042 -2.598459
## 107 1028 1034 1037 1041 -2.577819
## 108 1026 1035 1037 1043 -2.575947
## 109 1028 1034 1036 1042 -2.568613
## 110 1026 1032 1038 1045 -2.565685
## 111 1026 1035 1038 1044 -2.556292
## 112 1026 1032 1038 1044 -2.551427
## 113 1028 1031 1039 1042 -2.549840
## 114 1026 1033 1039 1042 -2.545385
## 115 1026 1034 1038 1045 -2.536037
## 116 1029 1035 1038 1042 -2.516755
## 117 1026 1034 1037 1043 -2.480185
## 118 1029 1031 1038 1042 -2.399991
## 119 1026 1035 1038 1042 -2.226465
## 120 1026 1034 1038 1042 -2.125076
Reduced vs null model
model_stats_fixed = data.frame(deltaAIC = mean(iterated_results_table$ΔAIC_fix),
p_value = mean(iterated_results_table$p_fix),
R2 = NA)
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -4.6 0.012 ** moderate
hist(iterated_results_table$ΔAIC_fix, main = "Distribution of ΔAIC of the reduced model.")
hist(iterated_results_table$p_fix, main = "Distribution of p-values of the reduced model.")
iterated_results_table %>%
select(system_nr_unconnected_systems,
ΔAIC_fix) %>%
arrange(ΔAIC_fix)
## system_nr_unconnected_systems ΔAIC_fix
## 1 1027 1033 1040 1044 -6.940532
## 2 1027 1034 1040 1043 -6.903324
## 3 1027 1034 1040 1041 -6.760521
## 4 1027 1034 1038 1041 -6.622166
## 5 1027 1034 1036 1045 -6.606294
## 6 1027 1033 1036 1044 -6.577876
## 7 1027 1035 1036 1044 -6.562129
## 8 1027 1034 1036 1043 -6.549768
## 9 1027 1031 1040 1044 -6.452391
## 10 1027 1033 1040 1041 -6.371757
## 11 1027 1033 1036 1045 -6.220793
## 12 1027 1035 1036 1043 -6.186646
## 13 1027 1033 1039 1045 -6.096878
## 14 1027 1031 1040 1043 -6.057354
## 15 1027 1035 1039 1043 -6.049751
## 16 1029 1032 1040 1043 -5.933082
## 17 1027 1033 1039 1041 -5.930748
## 18 1027 1035 1039 1041 -5.897280
## 19 1029 1032 1040 1041 -5.794994
## 20 1030 1032 1036 1044 -5.757495
## 21 1027 1034 1038 1045 -5.697180
## 22 1027 1035 1038 1044 -5.662918
## 23 1029 1032 1036 1045 -5.651213
## 24 1027 1031 1039 1045 -5.633029
## 25 1027 1031 1039 1043 -5.629971
## 26 1029 1032 1036 1043 -5.617087
## 27 1030 1032 1036 1043 -5.394408
## 28 1030 1032 1039 1043 -5.306848
## 29 1029 1033 1040 1041 -5.292856
## 30 1030 1034 1036 1043 -5.287809
## 31 1027 1031 1038 1044 -5.254627
## 32 1030 1033 1036 1044 -5.254242
## 33 1030 1032 1039 1041 -5.168969
## 34 1028 1032 1040 1044 -5.158396
## 35 1027 1035 1038 1041 -5.156805
## 36 1026 1032 1040 1044 -5.142217
## 37 1029 1033 1036 1045 -5.138453
## 38 1029 1035 1036 1043 -5.113887
## 39 1029 1031 1040 1043 -4.984868
## 40 1030 1032 1038 1044 -4.955229
## 41 1027 1031 1038 1045 -4.902859
## 42 1029 1032 1038 1045 -4.853952
## 43 1028 1032 1036 1044 -4.840536
## 44 1026 1032 1040 1043 -4.801060
## 45 1026 1034 1040 1043 -4.726029
## 46 1026 1033 1040 1044 -4.691634
## 47 1028 1032 1040 1041 -4.676531
## 48 1030 1033 1039 1041 -4.663205
## 49 1029 1032 1038 1041 -4.619450
## 50 1028 1034 1040 1041 -4.596171
## 51 1028 1032 1036 1045 -4.535937
## 52 1029 1033 1040 1042 -4.504157
## 53 1028 1032 1039 1045 -4.479165
## 54 1030 1032 1038 1041 -4.472011
## 55 1026 1032 1039 1045 -4.470568
## 56 1026 1032 1039 1043 -4.444710
## 57 1028 1034 1036 1045 -4.442180
## 58 1028 1035 1036 1044 -4.379247
## 59 1030 1031 1039 1043 -4.376579
## 60 1030 1034 1036 1042 -4.375624
## 61 1030 1034 1038 1041 -4.374437
## 62 1030 1034 1037 1043 -4.364962
## 63 1028 1032 1039 1041 -4.338405
## 64 1030 1033 1037 1044 -4.327466
## 65 1028 1031 1040 1044 -4.267812
## 66 1029 1033 1036 1042 -4.263918
## 67 1030 1034 1037 1041 -4.212466
## 68 1029 1033 1037 1045 -4.209670
## 69 1029 1035 1038 1041 -4.208528
## 70 1029 1035 1037 1043 -4.198452
## 71 1029 1035 1036 1042 -4.186153
## 72 1026 1032 1038 1044 -4.139370
## 73 1029 1033 1037 1041 -4.099395
## 74 1030 1031 1038 1044 -4.095837
## 75 1029 1031 1040 1042 -4.063453
## 76 1029 1035 1037 1041 -4.035656
## 77 1026 1033 1039 1045 -4.016902
## 78 1026 1035 1039 1043 -3.994497
## 79 1029 1031 1038 1045 -3.981474
## 80 1030 1031 1037 1044 -3.955214
## 81 1030 1033 1036 1042 -3.932411
## 82 1030 1033 1039 1042 -3.903767
## 83 1026 1034 1040 1042 -3.899653
## 84 1029 1031 1037 1043 -3.897016
## 85 1028 1034 1040 1042 -3.887318
## 86 1028 1035 1039 1041 -3.849173
## 87 1026 1032 1038 1045 -3.846206
## 88 1029 1031 1037 1045 -3.834051
## 89 1030 1033 1037 1041 -3.795195
## 90 1026 1034 1038 1045 -3.755427
## 91 1026 1035 1038 1044 -3.696892
## 92 1030 1034 1038 1042 -3.656193
## 93 1028 1034 1036 1042 -3.649720
## 94 1026 1034 1037 1043 -3.646837
## 95 1026 1034 1037 1045 -3.620843
## 96 1026 1033 1037 1044 -3.612827
## 97 1028 1034 1037 1045 -3.610219
## 98 1028 1031 1039 1045 -3.606477
## 99 1030 1031 1037 1043 -3.599894
## 100 1026 1035 1037 1044 -3.563164
## 101 1028 1035 1037 1044 -3.549454
## 102 1028 1034 1037 1041 -3.503951
## 103 1029 1035 1038 1042 -3.482353
## 104 1026 1033 1040 1042 -3.482214
## 105 1030 1031 1039 1042 -3.478937
## 106 1028 1031 1037 1044 -3.273757
## 107 1026 1033 1039 1042 -3.244087
## 108 1026 1033 1037 1045 -3.243225
## 109 1026 1035 1037 1043 -3.240657
## 110 1029 1031 1038 1042 -3.184571
## 111 1026 1035 1039 1042 -3.170945
## 112 1028 1035 1036 1042 -3.165473
## 113 1028 1035 1039 1042 -3.153646
## 114 1028 1035 1037 1041 -3.060612
## 115 1028 1031 1040 1042 -3.048588
## 116 1026 1034 1038 1042 -3.025000
## 117 1028 1031 1037 1045 -2.878668
## 118 1028 1031 1039 1042 -2.857615
## 119 1030 1031 1038 1042 -2.833675
## 120 1026 1035 1038 1042 -2.557163
metaecosystem_type_i = c("Medium-Medium meta-ecosystem",
"Medium-Medium unconnected")
Our first step in the data analysis involves filtering the data to isolate the relevant data. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure we filtered data the right way.
filtered_data = ds_metaecosystems %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i)
plot.metaecos.points(filtered_data,
metaecosystem_type_i,
response_variable)
Then, given that we have gathered measurements from the same
meta-ecosystem on multiple occasions, we can develop mixed effect models
to examine how the connection influenced this meta-ecosystem variable.
To study the effects of connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
system nr as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | system nr)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | system nr)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | system nr)).
Unconnected meta-ecosystems are made of paired unconnected
ecosystems, which are paired randomly. However, how to pair unconnected
ecosystems can be done in multiple ways, as unconnected ecosystems did
not interact and therefore any combination between ecosystems would be
arbitrary. To make sure that the random combination we selected did not
bias our results, we run all the possible combinations of ecosystems
constituting unconnected meta-ecosystems. The ecosystem combinations are
into the objects unconnected_combinations_sets (Data >
Meta-ecosystems). We therefore compute a p-value for each unconnected
ecosystems combination, creating a p-value distribution. We keep as
p-value of the comparison the mean of such distributions.
If you see “Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel = ## 1e-15, : unused control arguments ignored”, Ignore it. It just means that you didn’t pass the control argument to the Nelder_Mead optimiser, so it uses the default.
unconnected_combinations_sets_filtered = unconnected_combinations_sets %>%
filter(disturbance == disturbance_global_input,
metaecosystem_type %in% metaecosystem_type_i)
n_sets = unconnected_combinations_sets_filtered %>%
pull(set) %>%
max()
iterated_results_table = data.frame(Response = as.character(NA),
Levels = as.character(NA),
ΔAIC_full = NA,
p_full = NA,
ΔR2_full = NA,
ΔAIC_fix = NA,
p_fix = NA,
ΔR2_fix = NA,
combination_set = NA,
system_nr_unconnected_systems = as.character(NA)) %>%
slice(-1)
for (set_input in 1:n_sets) {
system_nr_unconnected_systems_input = unconnected_combinations_sets_filtered %>%
filter(metaecosystem_type %in% metaecosystem_type_i,
connection == "unconnected",
set == set_input) %>%
pull(system_nr)
filtered_data = ds_metaecosystems %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i,
connection == "connected" |
(connection == "unconnected" &
system_nr %in% system_nr_unconnected_systems_input))
null_model = lmer(
get(response_variable) ~
day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input)))
full_model = lmer(
get(response_variable) ~
day +
connection +
connection:day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input)))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
reduced_model = lmer(
get(response_variable) ~
day +
connection +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input)))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
iterated_results_table = fill.results.table(iterated_results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed)
iterated_results_table$set[nrow(iterated_results_table)] =
set_input
iterated_results_table$system_nr_unconnected_systems[nrow(iterated_results_table)] =
paste(system_nr_unconnected_systems_input, collapse = " ")
}
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.8e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## Model failed to converge with max|grad| = 0.00222507 (tol = 0.002, component 1)
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## Model failed to converge with max|grad| = 0.00222133 (tol = 0.002, component 1)
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -4.2e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## Model failed to converge with max|grad| = 0.00222507 (tol = 0.002, component 1)
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in checkConv(attr(opt, "derivs"), opt$par, ctrl = control$checkConv, :
## Model failed to converge with max|grad| = 0.00222133 (tol = 0.002, component 1)
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -4.2e+02
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning: Model failed to converge with 1 negative eigenvalue: -1.8e+00
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
Full vs null model
model_stats_full = data.frame(
deltaAIC = mean(iterated_results_table$ΔAIC_full),
p_value = mean(iterated_results_table$p_full),
R2 = NA
)
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 2.1 0.469 none
hist(iterated_results_table$ΔAIC_full, main = "Distribution of ΔAIC of the full model.")
hist(iterated_results_table$p_full, main = "Distribution of p-values of the full model.")
iterated_results_table %>%
select(system_nr_unconnected_systems,
ΔAIC_full) %>%
arrange(ΔAIC_full)
## system_nr_unconnected_systems ΔAIC_full
## 1 1059 1061 -2.1634950
## 2 1061 1059 -2.1634950
## 3 1061 1064 0.3104198
## 4 1064 1061 0.3104198
## 5 1058 1062 0.6299275
## 6 1062 1058 0.6299275
## 7 1058 1064 1.4703315
## 8 1064 1058 1.4703315
## 9 1059 1060 1.8363618
## 10 1060 1059 1.8363618
## 11 1056 1065 2.3113527
## 12 1065 1056 2.3113527
## 13 1056 1064 2.4258678
## 14 1064 1056 2.4258678
## 15 1057 1062 2.8145259
## 16 1062 1057 2.8145259
## 17 1059 1063 2.9451644
## 18 1063 1059 2.9451644
## 19 1058 1060 2.9492200
## 20 1060 1058 2.9492200
## 21 1057 1061 2.9921157
## 22 1061 1057 2.9921157
## 23 1062 1063 3.0082645
## 24 1063 1062 3.0082645
## 25 1060 1065 3.1739693
## 26 1065 1060 3.1739693
## 27 1056 1063 3.3683048
## 28 1063 1056 3.3683048
## 29 1057 1065 3.5740379
## 30 1065 1057 3.5740379
Reduced vs null model
model_stats_fixed = data.frame(deltaAIC = mean(iterated_results_table$ΔAIC_fix),
p_value = mean(iterated_results_table$p_fix),
R2 = NA)
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 0.7 0.333 none
hist(iterated_results_table$ΔAIC_fix, main = "Distribution of ΔAIC of the reduced model.")
hist(iterated_results_table$p_fix, main = "Distribution of p-values of the reduced model.")
iterated_results_table %>%
select(system_nr_unconnected_systems,
ΔAIC_fix) %>%
arrange(ΔAIC_fix)
## system_nr_unconnected_systems ΔAIC_fix
## 1 1059 1061 -1.8677401
## 2 1061 1059 -1.8677401
## 3 1058 1062 -1.3609533
## 4 1062 1058 -1.3609533
## 5 1061 1064 0.3699422
## 6 1064 1061 0.3699422
## 7 1058 1064 0.6864549
## 8 1064 1058 0.6864549
## 9 1059 1060 0.7170381
## 10 1060 1059 0.7170381
## 11 1056 1065 0.8343727
## 12 1065 1056 0.8343727
## 13 1058 1060 0.9528356
## 14 1060 1058 0.9528356
## 15 1057 1062 0.9795774
## 16 1062 1057 0.9795774
## 17 1057 1061 0.9976548
## 18 1061 1057 0.9976548
## 19 1056 1064 1.1258105
## 20 1064 1056 1.1258105
## 21 1059 1063 1.2673148
## 22 1063 1059 1.2673148
## 23 1062 1063 1.2753382
## 24 1063 1062 1.2753382
## 25 1056 1063 1.5564216
## 26 1063 1056 1.5564216
## 27 1060 1065 1.7486191
## 28 1065 1060 1.7486191
## 29 1057 1065 1.8526093
## 30 1065 1057 1.8526093
Following the initial inspection, we proceed to analyse differences among meta-ecosystems. To make it easier to interpret differences, we decided to construct a model for each comparisons we are interested in, which are: asymmetric vs symmetric connected, asymmetric connected vs unconnected, and symmetric connected vs unconnected.
response_variable = "metaecosystem_richness"
metaecosystem_type_i = c("Medium-Medium meta-ecosystem",
"Medium-Medium unconnected",
"Small-Large meta-ecosystem",
"Small-Large unconnected")
Here we want to look at how this meta-ecosystem variable changed across time by plotting its mean ± 95 confidence interval:
plot.metaecos.points(ds_metaecosystems,
metaecosystem_type_i,
response_variable,
3)
plot.metaecos.replicates(ds_metaecosystems,
metaecosystem_type_i,
response_variable)
metaecosystem_type_i = c("Small-Large meta-ecosystem",
"Small-Large unconnected")
Our first step in the data analysis involves filtering the data to isolate the relevant data. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure we filtered data the right way.
filtered_data = ds_metaecosystems %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i)
plot.metaecos.points(filtered_data,
metaecosystem_type_i,
response_variable)
Then, given that we have gathered measurements from the same
meta-ecosystem on multiple occasions, we can develop mixed effect models
to examine how the connection influenced this meta-ecosystem variable.
To study the effects of connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
system nr as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | system nr)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | system nr)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | system nr)).
Unconnected meta-ecosystems are made of paired unconnected
ecosystems, which are paired randomly. However, how to pair unconnected
ecosystems can be done in multiple ways, as unconnected ecosystems did
not interact and therefore any combination between ecosystems would be
arbitrary. To make sure that the random combination we selected did not
bias our results, we run all the possible combinations of ecosystems
constituting unconnected meta-ecosystems. The ecosystem combinations are
into the objects unconnected_combinations_sets (Data >
Meta-ecosystems). We therefore compute a p-value for each unconnected
ecosystems combination, creating a p-value distribution. We keep as
p-value of the comparison the mean of such distributions.
If you see “Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel = ## 1e-15, : unused control arguments ignored”, Ignore it. It just means that you didn’t pass the control argument to the Nelder_Mead optimiser, so it uses the default.
unconnected_combinations_sets_filtered = unconnected_combinations_sets %>%
filter(disturbance == disturbance_global_input,
metaecosystem_type %in% metaecosystem_type_i)
n_sets = unconnected_combinations_sets_filtered %>%
pull(set) %>%
max()
iterated_results_table = data.frame(Response = as.character(NA),
Levels = as.character(NA),
ΔAIC_full = NA,
p_full = NA,
ΔR2_full = NA,
ΔAIC_fix = NA,
p_fix = NA,
ΔR2_fix = NA,
combination_set = NA,
system_nr_unconnected_systems = as.character(NA)) %>%
slice(-1)
for (set_input in 1:n_sets) {
system_nr_unconnected_systems_input = unconnected_combinations_sets_filtered %>%
filter(metaecosystem_type %in% metaecosystem_type_i,
connection == "unconnected",
set == set_input) %>%
pull(system_nr)
filtered_data = ds_metaecosystems %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i,
connection == "connected" |
(connection == "unconnected" &
system_nr %in% system_nr_unconnected_systems_input))
null_model = lmer(
get(response_variable) ~
day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input)))
full_model = lmer(
get(response_variable) ~
day +
connection +
connection:day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input)))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
reduced_model = lmer(
get(response_variable) ~
day +
connection +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input)))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
iterated_results_table = fill.results.table(iterated_results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed)
iterated_results_table$set[nrow(iterated_results_table)] =
set_input
iterated_results_table$system_nr_unconnected_systems[nrow(iterated_results_table)] =
paste(system_nr_unconnected_systems_input, collapse = " ")
}
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
Full vs null model
model_stats_full = data.frame(
deltaAIC = mean(iterated_results_table$ΔAIC_full),
p_value = mean(iterated_results_table$p_full),
R2 = NA
)
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 2.2 0.449 none
hist(iterated_results_table$ΔAIC_full, main = "Distribution of ΔAIC of the full model.")
hist(iterated_results_table$p_full, main = "Distribution of p-values of the full model.")
iterated_results_table %>%
select(system_nr_unconnected_systems,
ΔAIC_full) %>%
arrange(ΔAIC_full)
## system_nr_unconnected_systems ΔAIC_full
## 1 1027 1031 1040 1043 0.1184054
## 2 1026 1032 1040 1043 0.4857987
## 3 1030 1032 1036 1043 0.5916539
## 4 1027 1035 1036 1043 0.5916539
## 5 1027 1033 1036 1045 0.6185128
## 6 1027 1033 1040 1041 0.6262096
## 7 1026 1035 1037 1043 0.8013854
## 8 1027 1031 1038 1045 0.8028149
## 9 1030 1031 1037 1043 0.8234183
## 10 1028 1032 1036 1045 0.8765712
## 11 1028 1032 1040 1041 0.9116171
## 12 1026 1033 1037 1045 0.9247340
## 13 1028 1031 1037 1045 0.9435650
## 14 1026 1032 1038 1045 0.9707246
## 15 1028 1031 1040 1042 1.0032662
## 16 1026 1033 1040 1042 1.0124658
## 17 1026 1035 1038 1042 1.0483023
## 18 1028 1035 1037 1041 1.0531285
## 19 1027 1035 1038 1041 1.1313847
## 20 1030 1032 1038 1041 1.1313847
## 21 1030 1031 1038 1042 1.1415923
## 22 1030 1033 1037 1041 1.1415923
## 23 1028 1035 1036 1042 1.1817598
## 24 1030 1033 1036 1042 1.2068920
## 25 1029 1031 1040 1043 1.4738514
## 26 1026 1033 1040 1044 1.6449245
## 27 1028 1031 1040 1044 1.6888776
## 28 1029 1033 1036 1045 1.6953488
## 29 1029 1035 1036 1043 1.6965544
## 30 1026 1035 1038 1044 1.7039081
## 31 1029 1033 1040 1041 1.7112135
## 32 1029 1031 1038 1045 1.7171764
## 33 1030 1033 1036 1044 1.7401448
## 34 1030 1031 1038 1044 1.7500094
## 35 1027 1033 1036 1044 1.7719847
## 36 1029 1032 1036 1043 1.8089431
## 37 1029 1035 1038 1041 1.8187599
## 38 1028 1035 1036 1044 1.8392635
## 39 1027 1031 1039 1043 1.8578998
## 40 1026 1034 1038 1045 1.9171187
## 41 1030 1031 1039 1043 1.9248196
## 42 1026 1034 1040 1043 1.9751176
## 43 1026 1035 1039 1043 2.0164777
## 44 1027 1031 1038 1044 2.0304657
## 45 1026 1033 1039 1045 2.0546512
## 46 1028 1032 1036 1044 2.0694046
## 47 1030 1034 1038 1041 2.0694600
## 48 1030 1034 1036 1043 2.0904245
## 49 1028 1031 1039 1045 2.0907961
## 50 1028 1034 1036 1045 2.1082731
## 51 1030 1033 1039 1041 2.1379006
## 52 1028 1034 1040 1041 2.1437119
## 53 1029 1031 1037 1043 2.1498037
## 54 1027 1033 1040 1044 2.1523181
## 55 1026 1032 1039 1043 2.1720464
## 56 1029 1032 1040 1043 2.1774126
## 57 1027 1033 1039 1041 2.1984253
## 58 1026 1033 1037 1044 2.2119163
## 59 1026 1032 1038 1044 2.2222913
## 60 1028 1035 1039 1041 2.2389915
## 61 1029 1033 1036 1042 2.2627048
## 62 1027 1034 1036 1043 2.2640377
## 63 1029 1032 1038 1041 2.2653341
## 64 1028 1031 1037 1044 2.2727205
## 65 1029 1031 1038 1042 2.2920731
## 66 1029 1033 1037 1041 2.2920731
## 67 1026 1034 1037 1043 2.4002606
## 68 1026 1034 1038 1042 2.4401378
## 69 1028 1032 1039 1041 2.4419863
## 70 1028 1032 1040 1044 2.4485679
## 71 1028 1034 1037 1041 2.5024721
## 72 1027 1033 1039 1045 2.5293857
## 73 1026 1033 1039 1042 2.5511370
## 74 1027 1035 1039 1043 2.5643376
## 75 1030 1032 1039 1043 2.5643376
## 76 1028 1031 1039 1042 2.5780819
## 77 1027 1034 1038 1041 2.5811953
## 78 1027 1034 1040 1043 2.5913595
## 79 1028 1034 1036 1042 2.6035722
## 80 1029 1032 1038 1045 2.6456581
## 81 1029 1033 1040 1042 2.6577686
## 82 1029 1035 1037 1043 2.6591291
## 83 1030 1032 1038 1044 2.6712469
## 84 1027 1035 1038 1044 2.6712469
## 85 1029 1033 1037 1045 2.6896263
## 86 1030 1033 1037 1044 2.7148934
## 87 1028 1035 1037 1044 2.7328657
## 88 1029 1035 1038 1042 2.7658189
## 89 1028 1032 1039 1045 2.7744574
## 90 1028 1034 1037 1045 2.8568194
## 91 1030 1034 1037 1043 2.8772512
## 92 1030 1034 1038 1042 2.9228228
## 93 1027 1034 1038 1045 2.9266862
## 94 1030 1033 1039 1042 2.9600778
## 95 1028 1034 1040 1042 2.9759999
## 96 1028 1035 1039 1042 3.0345699
## 97 1027 1031 1040 1044 3.0487703
## 98 1026 1034 1037 1045 3.2227518
## 99 1026 1035 1037 1044 3.2254653
## 100 1026 1032 1040 1044 3.2793631
## 101 1029 1032 1040 1041 3.3026595
## 102 1029 1032 1036 1045 3.3026595
## 103 1027 1031 1039 1045 3.3100834
## 104 1027 1035 1036 1044 3.3277203
## 105 1030 1032 1036 1044 3.3277203
## 106 1029 1035 1037 1041 3.3536689
## 107 1029 1031 1037 1045 3.3754843
## 108 1030 1034 1037 1041 3.3859468
## 109 1030 1031 1037 1044 3.3985584
## 110 1029 1031 1040 1042 3.4247298
## 111 1026 1032 1039 1045 3.4830031
## 112 1026 1034 1040 1042 3.4877050
## 113 1029 1035 1036 1042 3.5066722
## 114 1026 1035 1039 1042 3.5081735
## 115 1027 1034 1036 1045 3.5265898
## 116 1030 1032 1039 1041 3.5265898
## 117 1027 1035 1039 1041 3.5265898
## 118 1027 1034 1040 1041 3.5265898
## 119 1030 1031 1039 1042 3.5793863
## 120 1030 1034 1036 1042 3.5994587
Reduced vs null model
model_stats_fixed = data.frame(deltaAIC = mean(iterated_results_table$ΔAIC_fix),
p_value = mean(iterated_results_table$p_fix),
R2 = NA)
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 0.7 0.318 none
hist(iterated_results_table$ΔAIC_fix, main = "Distribution of ΔAIC of the reduced model.")
hist(iterated_results_table$p_fix, main = "Distribution of p-values of the reduced model.")
iterated_results_table %>%
select(system_nr_unconnected_systems,
ΔAIC_fix) %>%
arrange(ΔAIC_fix)
## system_nr_unconnected_systems ΔAIC_fix
## 1 1027 1031 1040 1043 -1.65718236
## 2 1027 1033 1036 1045 -1.12259736
## 3 1027 1033 1040 1041 -1.11490052
## 4 1030 1032 1036 1043 -1.05919932
## 5 1027 1035 1036 1043 -1.05919932
## 6 1026 1032 1040 1043 -1.04956469
## 7 1027 1031 1038 1045 -0.66691460
## 8 1028 1032 1036 1045 -0.60753760
## 9 1028 1032 1040 1041 -0.59117420
## 10 1027 1033 1036 1044 -0.16441858
## 11 1027 1035 1038 1041 -0.16035273
## 12 1030 1032 1038 1041 -0.16035273
## 13 1026 1032 1038 1045 -0.15068719
## 14 1030 1031 1037 1043 -0.13808816
## 15 1026 1033 1040 1042 -0.13712296
## 16 1028 1031 1040 1042 -0.12343883
## 17 1030 1033 1036 1042 -0.10750634
## 18 1027 1031 1039 1043 -0.08266643
## 19 1029 1032 1036 1043 -0.07728127
## 20 1029 1031 1040 1043 -0.05377605
## 21 1027 1033 1040 1044 0.16866674
## 22 1029 1033 1036 1045 0.21963355
## 23 1029 1032 1040 1043 0.22264762
## 24 1029 1033 1040 1041 0.23549825
## 25 1030 1031 1038 1042 0.24054564
## 26 1030 1033 1037 1041 0.24054564
## 27 1026 1033 1037 1045 0.24074956
## 28 1027 1031 1038 1044 0.24477102
## 29 1030 1033 1036 1044 0.24725672
## 30 1028 1032 1036 1044 0.26982886
## 31 1027 1033 1039 1041 0.27946580
## 32 1028 1035 1036 1042 0.28071311
## 33 1026 1033 1040 1044 0.28834590
## 34 1028 1031 1037 1045 0.29106203
## 35 1028 1031 1040 1044 0.30541988
## 36 1026 1035 1037 1043 0.30952771
## 37 1029 1035 1036 1043 0.34596173
## 38 1026 1032 1039 1043 0.36299333
## 39 1027 1034 1036 1043 0.40380312
## 40 1030 1031 1039 1043 0.41788013
## 41 1028 1032 1040 1044 0.55483412
## 42 1027 1033 1039 1045 0.55688420
## 43 1029 1033 1036 1042 0.60427912
## 44 1029 1032 1038 1041 0.61624107
## 45 1029 1031 1038 1045 0.61937207
## 46 1030 1031 1038 1044 0.62186766
## 47 1027 1035 1039 1043 0.62481978
## 48 1030 1032 1039 1043 0.62481978
## 49 1026 1035 1038 1042 0.62533298
## 50 1027 1034 1040 1043 0.65487306
## 51 1026 1032 1038 1044 0.65551858
## 52 1028 1032 1039 1041 0.65964771
## 53 1028 1035 1037 1041 0.67724089
## 54 1028 1035 1036 1044 0.68283289
## 55 1030 1033 1039 1041 0.69260830
## 56 1026 1033 1039 1045 0.71993955
## 57 1028 1031 1039 1045 0.72958735
## 58 1029 1031 1037 1043 0.73056357
## 59 1030 1034 1036 1043 0.78930670
## 60 1026 1035 1039 1043 0.81408505
## 61 1026 1034 1040 1043 0.82276296
## 62 1029 1032 1038 1045 0.86936025
## 63 1029 1033 1040 1042 0.87467163
## 64 1030 1032 1038 1044 0.88814996
## 65 1027 1035 1038 1044 0.88814996
## 66 1028 1032 1039 1045 0.90080080
## 67 1029 1031 1038 1042 0.93786621
## 68 1029 1033 1037 1041 0.93786621
## 69 1029 1035 1038 1041 0.94861787
## 70 1027 1034 1038 1041 0.97315483
## 71 1026 1033 1037 1044 0.98256355
## 72 1026 1035 1038 1044 1.00185638
## 73 1028 1031 1037 1044 1.01488846
## 74 1026 1033 1039 1042 1.01902222
## 75 1028 1031 1039 1042 1.02881099
## 76 1028 1034 1036 1045 1.03825704
## 77 1027 1031 1040 1044 1.04877028
## 78 1028 1034 1040 1041 1.05277914
## 79 1028 1035 1039 1041 1.07471304
## 80 1029 1033 1037 1045 1.16109065
## 81 1030 1033 1037 1044 1.17068843
## 82 1027 1034 1038 1045 1.18601448
## 83 1030 1033 1039 1042 1.20764640
## 84 1029 1035 1037 1043 1.24335157
## 85 1030 1034 1038 1041 1.26608050
## 86 1028 1034 1036 1042 1.28287675
## 87 1027 1031 1039 1045 1.31211837
## 88 1026 1034 1038 1045 1.31901954
## 89 1029 1032 1040 1041 1.32074576
## 90 1029 1032 1036 1045 1.32074576
## 91 1026 1032 1040 1044 1.32900261
## 92 1027 1035 1036 1044 1.34515254
## 93 1030 1032 1036 1044 1.34515254
## 94 1026 1034 1037 1043 1.38664507
## 95 1029 1035 1038 1042 1.41161197
## 96 1028 1034 1040 1042 1.47078486
## 97 1028 1035 1037 1044 1.48160821
## 98 1028 1035 1039 1042 1.49063338
## 99 1030 1034 1037 1043 1.51063165
## 100 1026 1034 1038 1042 1.51519213
## 101 1026 1032 1039 1045 1.55016501
## 102 1029 1031 1040 1042 1.55227262
## 103 1028 1034 1037 1041 1.55503012
## 104 1027 1034 1036 1045 1.55803538
## 105 1030 1032 1039 1041 1.55803538
## 106 1027 1035 1039 1041 1.55803538
## 107 1027 1034 1040 1041 1.55803538
## 108 1030 1034 1038 1042 1.62528090
## 109 1028 1034 1037 1045 1.69248914
## 110 1029 1031 1037 1045 1.72370911
## 111 1030 1031 1037 1044 1.73388560
## 112 1030 1031 1039 1042 1.73759816
## 113 1029 1035 1036 1042 1.74052995
## 114 1029 1035 1037 1041 1.86624986
## 115 1026 1035 1037 1044 1.86807498
## 116 1026 1034 1040 1042 1.86966260
## 117 1030 1034 1036 1042 1.87287701
## 118 1026 1035 1039 1042 1.87634137
## 119 1026 1034 1037 1045 1.95401191
## 120 1030 1034 1037 1041 1.95521289
metaecosystem_type_i = c("Medium-Medium meta-ecosystem",
"Medium-Medium unconnected")
Our first step in the data analysis involves filtering the data to isolate the relevant data. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure we filtered data the right way.
filtered_data = ds_metaecosystems %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i)
plot.metaecos.points(filtered_data,
metaecosystem_type_i,
response_variable)
Then, given that we have gathered measurements from the same
meta-ecosystem on multiple occasions, we can develop mixed effect models
to examine how the connection influenced this meta-ecosystem variable.
To study the effects of connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
system nr as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | system nr)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | system nr)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | system nr)).
Unconnected meta-ecosystems are made of paired unconnected
ecosystems, which are paired randomly. However, how to pair unconnected
ecosystems can be done in multiple ways, as unconnected ecosystems did
not interact and therefore any combination between ecosystems would be
arbitrary. To make sure that the random combination we selected did not
bias our results, we run all the possible combinations of ecosystems
constituting unconnected meta-ecosystems. The ecosystem combinations are
into the objects unconnected_combinations_sets (Data >
Meta-ecosystems). We therefore compute a p-value for each unconnected
ecosystems combination, creating a p-value distribution. We keep as
p-value of the comparison the mean of such distributions.
If you see “Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel = ## 1e-15, : unused control arguments ignored”, Ignore it. It just means that you didn’t pass the control argument to the Nelder_Mead optimiser, so it uses the default.
unconnected_combinations_sets_filtered = unconnected_combinations_sets %>%
filter(disturbance == disturbance_global_input,
metaecosystem_type %in% metaecosystem_type_i)
n_sets = unconnected_combinations_sets_filtered %>%
pull(set) %>%
max()
iterated_results_table = data.frame(Response = as.character(NA),
Levels = as.character(NA),
ΔAIC_full = NA,
p_full = NA,
ΔR2_full = NA,
ΔAIC_fix = NA,
p_fix = NA,
ΔR2_fix = NA,
combination_set = NA,
system_nr_unconnected_systems = as.character(NA)) %>%
slice(-1)
for (set_input in 1:n_sets) {
system_nr_unconnected_systems_input = unconnected_combinations_sets_filtered %>%
filter(metaecosystem_type %in% metaecosystem_type_i,
connection == "unconnected",
set == set_input) %>%
pull(system_nr)
filtered_data = ds_metaecosystems %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i,
connection == "connected" |
(connection == "unconnected" &
system_nr %in% system_nr_unconnected_systems_input))
null_model = lmer(
get(response_variable) ~
day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input)))
full_model = lmer(
get(response_variable) ~
day +
connection +
connection:day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input)))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
reduced_model = lmer(
get(response_variable) ~
day +
connection +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input)))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
iterated_results_table = fill.results.table(iterated_results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed)
iterated_results_table$set[nrow(iterated_results_table)] =
set_input
iterated_results_table$system_nr_unconnected_systems[nrow(iterated_results_table)] =
paste(system_nr_unconnected_systems_input, collapse = " ")
}
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
Full vs null model
model_stats_full = data.frame(
deltaAIC = mean(iterated_results_table$ΔAIC_full),
p_value = mean(iterated_results_table$p_full),
R2 = NA
)
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 2.8 0.576 none
hist(iterated_results_table$ΔAIC_full, main = "Distribution of ΔAIC of the full model.")
hist(iterated_results_table$p_full, main = "Distribution of p-values of the full model.")
iterated_results_table %>%
select(system_nr_unconnected_systems,
ΔAIC_full) %>%
arrange(ΔAIC_full)
## system_nr_unconnected_systems ΔAIC_full
## 1 1057 1062 1.295857
## 2 1062 1057 1.295857
## 3 1059 1060 1.891039
## 4 1060 1059 1.891039
## 5 1058 1062 2.005519
## 6 1062 1058 2.005519
## 7 1056 1064 2.007075
## 8 1064 1056 2.007075
## 9 1062 1063 2.635024
## 10 1063 1062 2.635024
## 11 1058 1064 2.758295
## 12 1064 1058 2.758295
## 13 1060 1065 2.918645
## 14 1065 1060 2.918645
## 15 1059 1061 3.032444
## 16 1059 1063 3.032444
## 17 1061 1059 3.032444
## 18 1063 1059 3.032444
## 19 1057 1065 3.102242
## 20 1065 1057 3.102242
## 21 1058 1060 3.125725
## 22 1060 1058 3.125725
## 23 1056 1065 3.199072
## 24 1065 1056 3.199072
## 25 1061 1064 3.286048
## 26 1064 1061 3.286048
## 27 1057 1061 3.772903
## 28 1061 1057 3.772903
## 29 1056 1063 3.782587
## 30 1063 1056 3.782587
Reduced vs null model
model_stats_fixed = data.frame(deltaAIC = mean(iterated_results_table$ΔAIC_fix),
p_value = mean(iterated_results_table$p_fix),
R2 = NA)
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 1.5 0.62 none
hist(iterated_results_table$ΔAIC_fix, main = "Distribution of ΔAIC of the reduced model.")
hist(iterated_results_table$p_fix, main = "Distribution of p-values of the reduced model.")
iterated_results_table %>%
select(system_nr_unconnected_systems,
ΔAIC_fix) %>%
arrange(ΔAIC_fix)
## system_nr_unconnected_systems ΔAIC_fix
## 1 1058 1062 0.02558494
## 2 1062 1058 0.02558494
## 3 1058 1064 0.76954896
## 4 1064 1058 0.76954896
## 5 1059 1060 1.13564061
## 6 1060 1059 1.13564061
## 7 1059 1061 1.14448056
## 8 1061 1059 1.14448056
## 9 1059 1063 1.14448056
## 10 1063 1059 1.14448056
## 11 1058 1060 1.20081237
## 12 1060 1058 1.20081237
## 13 1062 1063 1.61235729
## 14 1063 1062 1.61235729
## 15 1057 1062 1.79492711
## 16 1062 1057 1.79492711
## 17 1057 1065 1.92328025
## 18 1065 1057 1.92328025
## 19 1061 1064 1.94501477
## 20 1064 1061 1.94501477
## 21 1056 1065 1.96756892
## 22 1065 1056 1.96756892
## 23 1056 1064 1.99173842
## 24 1064 1056 1.99173842
## 25 1056 1063 1.99458722
## 26 1063 1056 1.99458722
## 27 1060 1065 1.99783118
## 28 1065 1060 1.99783118
## 29 1057 1061 1.99859706
## 30 1061 1057 1.99859706
response_variable = "total_metaecosystem_bioarea_mm2"
metaecosystem_type_i = c("Medium-Medium meta-ecosystem",
"Medium-Medium unconnected",
"Small-Large meta-ecosystem",
"Small-Large unconnected")
Here we want to look at how this meta-ecosystem variable changed across time by plotting its mean ± 95 confidence interval:
plot.metaecos.points(ds_metaecosystems,
metaecosystem_type_i,
response_variable,
3)
plot.metaecos.replicates(ds_metaecosystems,
metaecosystem_type_i,
response_variable)
Following the initial inspection, we proceed to analyse differences among meta-ecosystems. To make it easier to interpret differences, we decided to construct a model for each comparisons we are interested in, which are: asymmetric vs symmetric connected, asymmetric connected vs unconnected, and symmetric connected vs unconnected.
metaecosystem_type_i = c("Small-Large meta-ecosystem",
"Small-Large unconnected")
Our first step in the data analysis involves filtering the data to isolate the relevant data. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure we filtered data the right way.
filtered_data = ds_metaecosystems %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i)
plot.metaecos.points(filtered_data,
metaecosystem_type_i,
response_variable)
Then, given that we have gathered measurements from the same
meta-ecosystem on multiple occasions, we can develop mixed effect models
to examine how the connection influenced this meta-ecosystem variable.
To study the effects of connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
system nr as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | system nr)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | system nr)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | system nr)).
Unconnected meta-ecosystems are made of paired unconnected
ecosystems, which are paired randomly. However, how to pair unconnected
ecosystems can be done in multiple ways, as unconnected ecosystems did
not interact and therefore any combination between ecosystems would be
arbitrary. To make sure that the random combination we selected did not
bias our results, we run all the possible combinations of ecosystems
constituting unconnected meta-ecosystems. The ecosystem combinations are
into the objects unconnected_combinations_sets (Data >
Meta-ecosystems). We therefore compute a p-value for each unconnected
ecosystems combination, creating a p-value distribution. We keep as
p-value of the comparison the mean of such distributions.
If you see “Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel = ## 1e-15, : unused control arguments ignored”, Ignore it. It just means that you didn’t pass the control argument to the Nelder_Mead optimiser, so it uses the default.
unconnected_combinations_sets_filtered = unconnected_combinations_sets %>%
filter(disturbance == disturbance_global_input,
metaecosystem_type %in% metaecosystem_type_i)
n_sets = unconnected_combinations_sets_filtered %>%
pull(set) %>%
max()
iterated_results_table = data.frame(Response = as.character(NA),
Levels = as.character(NA),
ΔAIC_full = NA,
p_full = NA,
ΔR2_full = NA,
ΔAIC_fix = NA,
p_fix = NA,
ΔR2_fix = NA,
combination_set = NA,
system_nr_unconnected_systems = as.character(NA)) %>%
slice(-1)
for (set_input in 1:n_sets) {
system_nr_unconnected_systems_input = unconnected_combinations_sets_filtered %>%
filter(metaecosystem_type %in% metaecosystem_type_i,
connection == "unconnected",
set == set_input) %>%
pull(system_nr)
filtered_data = ds_metaecosystems %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i,
connection == "connected" |
(connection == "unconnected" &
system_nr %in% system_nr_unconnected_systems_input))
null_model = lmer(
get(response_variable) ~
day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input)))
full_model = lmer(
get(response_variable) ~
day +
connection +
connection:day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input)))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
reduced_model = lmer(
get(response_variable) ~
day +
connection +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input)))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
iterated_results_table = fill.results.table(iterated_results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed)
iterated_results_table$set[nrow(iterated_results_table)] =
set_input
iterated_results_table$system_nr_unconnected_systems[nrow(iterated_results_table)] =
paste(system_nr_unconnected_systems_input, collapse = " ")
}
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
Full vs null model
model_stats_full = data.frame(
deltaAIC = mean(iterated_results_table$ΔAIC_full),
p_value = mean(iterated_results_table$p_full),
R2 = NA
)
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -5.1 0.011 ** moderate
hist(iterated_results_table$ΔAIC_full, main = "Distribution of ΔAIC of the full model.")
hist(iterated_results_table$p_full, main = "Distribution of p-values of the full model.")
iterated_results_table %>%
select(system_nr_unconnected_systems,
ΔAIC_full) %>%
arrange(ΔAIC_full)
## system_nr_unconnected_systems ΔAIC_full
## 1 1029 1035 1038 1042 -6.022025
## 2 1028 1035 1039 1042 -6.009392
## 3 1029 1032 1038 1045 -5.980998
## 4 1028 1035 1036 1042 -5.971627
## 5 1028 1032 1039 1045 -5.968418
## 6 1029 1035 1037 1043 -5.964009
## 7 1030 1032 1039 1043 -5.953994
## 8 1030 1033 1039 1042 -5.952080
## 9 1027 1035 1039 1043 -5.950406
## 10 1026 1035 1038 1042 -5.949312
## 11 1030 1032 1038 1044 -5.935165
## 12 1030 1034 1038 1042 -5.933681
## 13 1027 1035 1038 1041 -5.932083
## 14 1028 1035 1037 1041 -5.932061
## 15 1027 1035 1036 1043 -5.931435
## 16 1028 1035 1037 1044 -5.931425
## 17 1027 1035 1038 1044 -5.930187
## 18 1028 1032 1036 1045 -5.929937
## 19 1029 1033 1037 1045 -5.922847
## 20 1029 1032 1040 1043 -5.915603
## 21 1029 1033 1040 1042 -5.913018
## 22 1027 1033 1039 1045 -5.911002
## 23 1026 1035 1037 1043 -5.910253
## 24 1026 1032 1038 1045 -5.907733
## 25 1028 1034 1037 1045 -5.891026
## 26 1027 1034 1038 1045 -5.890883
## 27 1027 1033 1036 1045 -5.890744
## 28 1030 1032 1036 1043 -5.885985
## 29 1030 1032 1038 1041 -5.885243
## 30 1028 1032 1040 1044 -5.884380
## 31 1030 1033 1036 1042 -5.882925
## 32 1028 1034 1040 1042 -5.882767
## 33 1030 1033 1037 1044 -5.875438
## 34 1030 1034 1037 1043 -5.875257
## 35 1027 1031 1038 1045 -5.873727
## 36 1028 1031 1037 1045 -5.873315
## 37 1026 1033 1037 1045 -5.870195
## 38 1030 1031 1038 1042 -5.864916
## 39 1028 1032 1040 1041 -5.845141
## 40 1030 1033 1037 1041 -5.842017
## 41 1030 1031 1037 1043 -5.826602
## 42 1027 1033 1040 1044 -5.826177
## 43 1027 1034 1040 1043 -5.825908
## 44 1028 1031 1040 1042 -5.825505
## 45 1026 1032 1040 1043 -5.825061
## 46 1026 1033 1040 1042 -5.823777
## 47 1027 1033 1040 1041 -5.805192
## 48 1027 1031 1040 1043 -5.789613
## 49 1029 1035 1036 1042 -5.251301
## 50 1029 1035 1037 1041 -5.214670
## 51 1029 1032 1036 1045 -5.213476
## 52 1026 1035 1039 1042 -5.206071
## 53 1030 1032 1039 1041 -5.199912
## 54 1027 1035 1039 1041 -5.195244
## 55 1030 1031 1039 1042 -5.186668
## 56 1029 1032 1040 1041 -5.170284
## 57 1030 1034 1036 1042 -5.168899
## 58 1026 1032 1039 1045 -5.168465
## 59 1029 1031 1037 1045 -5.165148
## 60 1030 1032 1036 1044 -5.161803
## 61 1029 1031 1040 1042 -5.156784
## 62 1027 1035 1036 1044 -5.155613
## 63 1027 1031 1039 1045 -5.146903
## 64 1030 1034 1037 1041 -5.131450
## 65 1026 1035 1037 1044 -5.130977
## 66 1027 1034 1036 1045 -5.127348
## 67 1030 1031 1037 1044 -5.112757
## 68 1026 1034 1037 1045 -5.102779
## 69 1026 1034 1040 1042 -5.096091
## 70 1026 1032 1040 1044 -5.088332
## 71 1027 1034 1040 1041 -5.084501
## 72 1027 1031 1040 1044 -5.065938
## 73 1029 1033 1036 1042 -4.434082
## 74 1029 1031 1038 1042 -4.432915
## 75 1029 1032 1038 1041 -4.430208
## 76 1028 1031 1039 1042 -4.415847
## 77 1028 1032 1039 1041 -4.412631
## 78 1029 1032 1036 1043 -4.405513
## 79 1029 1033 1037 1041 -4.405467
## 80 1029 1031 1037 1043 -4.381131
## 81 1028 1034 1036 1042 -4.376436
## 82 1026 1033 1039 1042 -4.374303
## 83 1027 1033 1039 1041 -4.367195
## 84 1028 1032 1036 1044 -4.349511
## 85 1028 1034 1037 1041 -4.348239
## 86 1026 1032 1039 1043 -4.344340
## 87 1027 1031 1039 1043 -4.342572
## 88 1026 1034 1038 1042 -4.333840
## 89 1027 1034 1038 1041 -4.326583
## 90 1028 1031 1037 1044 -4.326530
## 91 1026 1032 1038 1044 -4.306005
## 92 1027 1031 1038 1044 -4.304605
## 93 1027 1033 1036 1044 -4.304519
## 94 1029 1033 1036 1045 -4.304489
## 95 1027 1034 1036 1043 -4.301859
## 96 1029 1035 1038 1041 -4.301289
## 97 1029 1035 1036 1043 -4.296825
## 98 1028 1035 1039 1041 -4.295904
## 99 1029 1031 1038 1045 -4.292952
## 100 1028 1031 1039 1045 -4.287696
## 101 1026 1033 1037 1044 -4.284830
## 102 1026 1034 1037 1043 -4.282201
## 103 1026 1033 1039 1045 -4.273499
## 104 1026 1035 1039 1043 -4.265870
## 105 1028 1035 1036 1044 -4.244515
## 106 1028 1034 1036 1045 -4.241291
## 107 1029 1033 1040 1041 -4.224922
## 108 1030 1033 1039 1041 -4.222213
## 109 1026 1035 1038 1044 -4.218484
## 110 1026 1034 1038 1045 -4.215300
## 111 1029 1031 1040 1043 -4.209660
## 112 1030 1031 1039 1043 -4.206887
## 113 1030 1033 1036 1044 -4.173196
## 114 1030 1034 1038 1041 -4.166109
## 115 1028 1034 1040 1041 -4.163908
## 116 1030 1031 1038 1044 -4.161992
## 117 1030 1034 1036 1043 -4.161909
## 118 1028 1031 1040 1044 -4.159809
## 119 1026 1033 1040 1044 -4.146483
## 120 1026 1034 1040 1043 -4.135442
Reduced vs null model
model_stats_fixed = data.frame(deltaAIC = mean(iterated_results_table$ΔAIC_fix),
p_value = mean(iterated_results_table$p_fix),
R2 = NA)
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -6.9 0.003 *** strong
hist(iterated_results_table$ΔAIC_fix, main = "Distribution of ΔAIC of the reduced model.")
hist(iterated_results_table$p_fix, main = "Distribution of p-values of the reduced model.")
iterated_results_table %>%
select(system_nr_unconnected_systems,
ΔAIC_fix) %>%
arrange(ΔAIC_fix)
## system_nr_unconnected_systems ΔAIC_fix
## 1 1028 1035 1036 1042 -7.963705
## 2 1029 1035 1038 1042 -7.944556
## 3 1026 1035 1038 1042 -7.941393
## 4 1028 1035 1039 1042 -7.932491
## 5 1028 1035 1037 1041 -7.923836
## 6 1027 1035 1038 1041 -7.923739
## 7 1027 1035 1036 1043 -7.923088
## 8 1028 1032 1036 1045 -7.921975
## 9 1029 1032 1038 1045 -7.903120
## 10 1026 1035 1037 1043 -7.902029
## 11 1026 1032 1038 1045 -7.899773
## 12 1028 1032 1039 1045 -7.891113
## 13 1029 1035 1037 1043 -7.883289
## 14 1027 1033 1036 1045 -7.882434
## 15 1030 1032 1036 1043 -7.877800
## 16 1030 1032 1038 1041 -7.877061
## 17 1030 1033 1036 1042 -7.874818
## 18 1030 1032 1039 1043 -7.874419
## 19 1030 1033 1039 1042 -7.873254
## 20 1027 1035 1039 1043 -7.869099
## 21 1027 1031 1038 1045 -7.865420
## 22 1028 1031 1037 1045 -7.865127
## 23 1026 1033 1037 1045 -7.862007
## 24 1030 1032 1038 1044 -7.857041
## 25 1030 1031 1038 1042 -7.856812
## 26 1030 1034 1038 1042 -7.855904
## 27 1028 1035 1037 1044 -7.852789
## 28 1027 1035 1038 1044 -7.850394
## 29 1029 1033 1037 1045 -7.842469
## 30 1028 1032 1040 1041 -7.837021
## 31 1029 1032 1040 1043 -7.836058
## 32 1029 1033 1040 1042 -7.834225
## 33 1030 1033 1037 1041 -7.833593
## 34 1027 1033 1039 1045 -7.830037
## 35 1030 1031 1037 1043 -7.818179
## 36 1028 1031 1040 1042 -7.817462
## 37 1026 1032 1040 1043 -7.816942
## 38 1026 1033 1040 1042 -7.815735
## 39 1028 1034 1037 1045 -7.812332
## 40 1027 1034 1038 1045 -7.811026
## 41 1028 1032 1040 1044 -7.806862
## 42 1028 1034 1040 1042 -7.805594
## 43 1027 1033 1040 1041 -7.796711
## 44 1030 1033 1037 1044 -7.794803
## 45 1030 1034 1037 1043 -7.794217
## 46 1027 1031 1040 1043 -7.781132
## 47 1027 1033 1040 1044 -7.744992
## 48 1027 1034 1040 1043 -7.744316
## 49 1029 1035 1036 1042 -7.152003
## 50 1029 1032 1036 1045 -7.113658
## 51 1029 1035 1037 1041 -7.111188
## 52 1026 1035 1039 1042 -7.107568
## 53 1030 1032 1039 1041 -7.097960
## 54 1027 1035 1039 1041 -7.091016
## 55 1030 1031 1039 1042 -7.085682
## 56 1026 1032 1039 1045 -7.069452
## 57 1030 1034 1036 1042 -7.069254
## 58 1029 1032 1040 1041 -7.068363
## 59 1029 1031 1037 1045 -7.062114
## 60 1030 1032 1036 1044 -7.061722
## 61 1029 1031 1040 1042 -7.055832
## 62 1027 1035 1036 1044 -7.053333
## 63 1027 1031 1039 1045 -7.043125
## 64 1026 1035 1037 1044 -7.030250
## 65 1030 1034 1037 1041 -7.027609
## 66 1027 1034 1036 1045 -7.024986
## 67 1030 1031 1037 1044 -7.009450
## 68 1026 1034 1037 1045 -7.001977
## 69 1026 1034 1040 1042 -6.997288
## 70 1026 1032 1040 1044 -6.989097
## 71 1027 1034 1040 1041 -6.979952
## 72 1027 1031 1040 1044 -6.961929
## 73 1029 1033 1036 1042 -6.399282
## 74 1029 1031 1038 1042 -6.398130
## 75 1029 1032 1038 1041 -6.395106
## 76 1028 1031 1039 1042 -6.381290
## 77 1028 1032 1039 1041 -6.377761
## 78 1029 1032 1036 1043 -6.370396
## 79 1029 1033 1037 1041 -6.369336
## 80 1029 1031 1037 1043 -6.345000
## 81 1028 1034 1036 1042 -6.342272
## 82 1026 1033 1039 1042 -6.339745
## 83 1027 1033 1039 1041 -6.330802
## 84 1028 1032 1036 1044 -6.315192
## 85 1028 1034 1037 1041 -6.312793
## 86 1026 1032 1039 1043 -6.309469
## 87 1027 1031 1039 1043 -6.306180
## 88 1026 1034 1038 1042 -6.299689
## 89 1028 1031 1037 1044 -6.291242
## 90 1027 1034 1038 1041 -6.290642
## 91 1026 1032 1038 1044 -6.271700
## 92 1027 1031 1038 1044 -6.268827
## 93 1027 1033 1036 1044 -6.268725
## 94 1027 1034 1036 1043 -6.265904
## 95 1026 1033 1037 1044 -6.249541
## 96 1026 1034 1037 1043 -6.246754
## 97 1029 1033 1036 1045 -5.720024
## 98 1029 1035 1038 1041 -5.714463
## 99 1028 1035 1039 1041 -5.714243
## 100 1029 1035 1036 1043 -5.710035
## 101 1029 1031 1038 1045 -5.708712
## 102 1028 1031 1039 1045 -5.708588
## 103 1026 1033 1039 1045 -5.694937
## 104 1026 1035 1039 1043 -5.685026
## 105 1028 1035 1036 1044 -5.675590
## 106 1028 1034 1036 1045 -5.671573
## 107 1026 1035 1038 1044 -5.650312
## 108 1026 1034 1038 1045 -5.646338
## 109 1029 1033 1040 1041 -5.626516
## 110 1030 1033 1039 1041 -5.623941
## 111 1029 1031 1040 1043 -5.611557
## 112 1030 1031 1039 1043 -5.608923
## 113 1030 1033 1036 1044 -5.588388
## 114 1028 1034 1040 1041 -5.580897
## 115 1028 1031 1040 1044 -5.580204
## 116 1030 1034 1038 1041 -5.578031
## 117 1030 1031 1038 1044 -5.577377
## 118 1030 1034 1036 1043 -5.573941
## 119 1026 1033 1040 1044 -5.567516
## 120 1026 1034 1040 1043 -5.553379
metaecosystem_type_i = c("Medium-Medium meta-ecosystem",
"Medium-Medium unconnected")
Our first step in the data analysis involves filtering the data to isolate the relevant data. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure we filtered data the right way.
filtered_data = ds_metaecosystems %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i)
plot.metaecos.points(filtered_data,
metaecosystem_type_i,
response_variable)
Then, given that we have gathered measurements from the same
meta-ecosystem on multiple occasions, we can develop mixed effect models
to examine how the connection influenced this meta-ecosystem variable.
To study the effects of connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
system nr as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | system nr)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | system nr)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | system nr)).
Unconnected meta-ecosystems are made of paired unconnected
ecosystems, which are paired randomly. However, how to pair unconnected
ecosystems can be done in multiple ways, as unconnected ecosystems did
not interact and therefore any combination between ecosystems would be
arbitrary. To make sure that the random combination we selected did not
bias our results, we run all the possible combinations of ecosystems
constituting unconnected meta-ecosystems. The ecosystem combinations are
into the objects unconnected_combinations_sets (Data >
Meta-ecosystems). We therefore compute a p-value for each unconnected
ecosystems combination, creating a p-value distribution. We keep as
p-value of the comparison the mean of such distributions.
If you see “Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel = ## 1e-15, : unused control arguments ignored”, Ignore it. It just means that you didn’t pass the control argument to the Nelder_Mead optimiser, so it uses the default.
unconnected_combinations_sets_filtered = unconnected_combinations_sets %>%
filter(disturbance == disturbance_global_input,
metaecosystem_type %in% metaecosystem_type_i)
n_sets = unconnected_combinations_sets_filtered %>%
pull(set) %>%
max()
iterated_results_table = data.frame(Response = as.character(NA),
Levels = as.character(NA),
ΔAIC_full = NA,
p_full = NA,
ΔR2_full = NA,
ΔAIC_fix = NA,
p_fix = NA,
ΔR2_fix = NA,
combination_set = NA,
system_nr_unconnected_systems = as.character(NA)) %>%
slice(-1)
for (set_input in 1:n_sets) {
system_nr_unconnected_systems_input = unconnected_combinations_sets_filtered %>%
filter(metaecosystem_type %in% metaecosystem_type_i,
connection == "unconnected",
set == set_input) %>%
pull(system_nr)
filtered_data = ds_metaecosystems %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
metaecosystem_type %in% metaecosystem_type_i,
connection == "connected" |
(connection == "unconnected" &
system_nr %in% system_nr_unconnected_systems_input))
null_model = lmer(
get(response_variable) ~
day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input)))
full_model = lmer(
get(response_variable) ~
day +
connection +
connection:day +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input)))
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
reduced_model = lmer(
get(response_variable) ~
day +
connection +
(day | system_nr),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = optimizer_input,
optCtrl = list(method = method_input)))
model_stats_fixed = compute.model.stats(reduced_model,
null_model,
"mixed_model")
iterated_results_table = fill.results.table(iterated_results_table,
response_variable,
metaecosystem_type_i,
model_stats_full,
model_stats_fixed)
iterated_results_table$set[nrow(iterated_results_table)] =
set_input
iterated_results_table$system_nr_unconnected_systems[nrow(iterated_results_table)] =
paste(system_nr_unconnected_systems_input, collapse = " ")
}
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
## Warning in (function (iprint = 0L, maxfun = 10000L, FtolAbs = 1e-05, FtolRel =
## 1e-15, : unused control arguments ignored
Full vs null model
model_stats_full = data.frame(
deltaAIC = mean(iterated_results_table$ΔAIC_full),
p_value = mean(iterated_results_table$p_full),
R2 = NA
)
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 0.3 0.167 none
hist(iterated_results_table$ΔAIC_full, main = "Distribution of ΔAIC of the full model.")
hist(iterated_results_table$p_full, main = "Distribution of p-values of the full model.")
iterated_results_table %>%
select(system_nr_unconnected_systems,
ΔAIC_full) %>%
arrange(ΔAIC_full)
## system_nr_unconnected_systems ΔAIC_full
## 1 1056 1065 -0.62042593
## 2 1065 1056 -0.62042593
## 3 1058 1062 -0.49794844
## 4 1062 1058 -0.49794844
## 5 1056 1064 -0.26493674
## 6 1064 1056 -0.26493674
## 7 1059 1061 -0.20354500
## 8 1061 1059 -0.20354500
## 9 1057 1062 -0.19138169
## 10 1062 1057 -0.19138169
## 11 1057 1065 0.02135567
## 12 1065 1057 0.02135567
## 13 1058 1064 0.05043751
## 14 1064 1058 0.05043751
## 15 1059 1060 0.10548001
## 16 1060 1059 0.10548001
## 17 1059 1063 0.34923867
## 18 1063 1059 0.34923867
## 19 1060 1065 0.74571276
## 20 1065 1060 0.74571276
## 21 1061 1064 0.76203591
## 22 1064 1061 0.76203591
## 23 1062 1063 0.84585905
## 24 1063 1062 0.84585905
## 25 1058 1060 1.20377042
## 26 1060 1058 1.20377042
## 27 1057 1061 1.22459781
## 28 1061 1057 1.22459781
## 29 1056 1063 1.24283225
## 30 1063 1056 1.24283225
Reduced vs null model
model_stats_fixed = data.frame(deltaAIC = mean(iterated_results_table$ΔAIC_fix),
p_value = mean(iterated_results_table$p_fix),
R2 = NA)
model_stats_fixed %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 0.9 0.356 none
hist(iterated_results_table$ΔAIC_fix, main = "Distribution of ΔAIC of the reduced model.")
hist(iterated_results_table$p_fix, main = "Distribution of p-values of the reduced model.")
iterated_results_table %>%
select(system_nr_unconnected_systems,
ΔAIC_fix) %>%
arrange(ΔAIC_fix)
## system_nr_unconnected_systems ΔAIC_fix
## 1 1056 1065 -0.6946471
## 2 1065 1056 -0.6946471
## 3 1058 1062 -0.6033386
## 4 1062 1058 -0.6033386
## 5 1059 1061 -0.4184667
## 6 1061 1059 -0.4184667
## 7 1056 1064 0.8085298
## 8 1064 1056 0.8085298
## 9 1057 1062 1.0136835
## 10 1062 1057 1.0136835
## 11 1061 1064 1.1260933
## 12 1064 1061 1.1260933
## 13 1058 1064 1.1906671
## 14 1064 1058 1.1906671
## 15 1059 1060 1.2606299
## 16 1060 1059 1.2606299
## 17 1057 1065 1.3250017
## 18 1065 1057 1.3250017
## 19 1060 1065 1.3423113
## 20 1065 1060 1.3423113
## 21 1057 1061 1.4404786
## 22 1061 1057 1.4404786
## 23 1062 1063 1.4615803
## 24 1063 1062 1.4615803
## 25 1058 1060 1.5149510
## 26 1060 1058 1.5149510
## 27 1056 1063 1.5979996
## 28 1063 1056 1.5979996
## 29 1059 1063 1.6311258
## 30 1063 1059 1.6311258
patch_type_i = c("Small unconnected",
"Medium unconnected",
"Large unconnected",
"Small connected to small",
"Small connected to large",
"Medium connected to medium",
"Large connected to small",
"Large connected to large")
ds_patches %>%
filter(is.na(species_richness) != TRUE) %>%
ggplot(aes(x = species_richness,
y = bioarea_mm2_per_ml)) +
geom_point() +
xlim(0, length(protist_species)) +
labs(x = axis_names$axis_name[axis_names$variable == "species_richness"],
y = axis_names$axis_name[axis_names$variable == "bioarea_mm2_per_ml"]) +
theme_bw() +
theme(panel.grid.major = element_blank(),
panel.grid.minor = element_blank(),
legend.position = legend_position,
legend.key.width = unit(legend_width_cm, "cm"))
ds_patches %>%
filter(is.na(shannon) != TRUE) %>%
ggplot(aes(x = shannon,
y = bioarea_mm2_per_ml)) +
geom_point() +
labs(x = axis_names$axis_name[axis_names$variable == "shannon"],
y = axis_names$axis_name[axis_names$variable == "bioarea_mm2_per_ml"]) +
theme_bw() +
theme(panel.grid.major = element_blank(),
panel.grid.minor = element_blank(),
legend.position = legend_position,
legend.key.width = unit(legend_width_cm, "cm"))
ds_patches %>%
filter(is.na(evenness_pielou) != TRUE) %>%
ggplot(aes(x = evenness_pielou,
y = bioarea_mm2_per_ml)) +
geom_point() +
labs(x = axis_names$axis_name[axis_names$variable == "evenness_pielou"],
y = axis_names$axis_name[axis_names$variable == "bioarea_mm2_per_ml"]) +
theme_bw() +
theme(panel.grid.major = element_blank(),
panel.grid.minor = element_blank(),
legend.position = legend_position,
legend.key.width = unit(legend_width_cm, "cm"))
patch_type_i = c("Small unconnected",
"Medium unconnected",
"Large unconnected")
response_variable = "shannon"
We want to know whether the size of ecosystems influenced this response variable. We only look at unconnected ecosystems so that the effects of connection don’t confound the effects of ecosystem size. We first start from plotting how this response variable changed in different sizes throughout the experiment through its mean ± 95 confidence interval:
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
## Warning in qt(conf.interval/2 + 0.5, datac$N - 1): NaNs produced
save_results_in_table = TRUE
Following the initial inspection, we proceed to analyse differences among ecosystems. Our first step involves filtering the data to isolate the relevant data for analysis. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure that what filtered the data in the right way.
filtered_data = ds_patches %>%
filter(metaecosystem == "no",
time_point >= first_time_point_model,
time_point <= last_time_point_model,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
## Warning in qt(conf.interval/2 + 0.5, datac$N - 1): NaNs produced
Then, given that we have gathered measurements from the same
ecosystem on multiple occasions, we can develop mixed effect models to
examine how ecosystem size influenced this variable. To study the
effects of ecosystem size we compare two models to a null model using
ANOVA: a full model and a reduced model. In all models, we treat culture
ID as having a random effect on how the slope and intercept of the
relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of size with time
(Response variable ~ size * day + (day | culture ID)), the
reduced model contains the size but without the interaction with time
(Response variable ~ size + day + (day | culture ID)), and
the null model doesn’t contain the size at all
(Response variable ~ day + (day | culture ID)). If any of
the two model comparisons is significant, then ecosystem size had an
effect.
full_model = lmer(
get(response_variable) ~
patch_size * day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
reduced_model = lmer(
get(response_variable) ~
patch_size + day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
## Warning: Model failed to converge with 1 negative eigenvalue: -1.5e+01
Full model vs null model
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -35 < 0.001 **** very strong
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_size * day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 62.9 86.4 -21.4 42.9 68
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.37 -0.62 0.05 0.68 2.38
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 2e-11 5e-06
## day 2e-14 1e-07 -1.00
## Residual 1e-01 3e-01
## Number of obs: 78, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 1e+00 2e-01 8e+01 9.0 9e-14 ***
## patch_sizeMedium -3e-01 2e-01 8e+01 -1.2 0.2
## patch_sizeSmall 1e-01 3e-01 8e+01 0.5 0.6
## day -7e-04 9e-03 8e+01 -0.1 0.9
## patch_sizeMedium:day 3e-03 1e-02 8e+01 0.3 0.8
## patch_sizeSmall:day -7e-02 1e-02 8e+01 -4.8 6e-06 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptch_M ptch_S day ptc_M:
## patch_szMdm -0.707
## ptch_szSmll -0.622 0.440
## day -0.935 0.661 0.582
## ptch_szMdm: 0.661 -0.935 -0.411 -0.707
## ptch_szSml: 0.541 -0.382 -0.931 -0.578 0.409
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(full_model))
Reduced vs null model
model_stats_reduced = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_reduced %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -20.2 < 0.001 **** very strong
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_size + day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 77.7 96.5 -30.8 61.7 70
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -1.90 -0.62 -0.05 0.66 2.27
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 3e-01 0.51
## day 8e-04 0.03 -1.00
## Residual 1e-01 0.33
## Number of obs: 78, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 1.778 0.179 14.000 10 1e-07 ***
## patch_sizeMedium -0.220 0.084 62.158 -3 0.01 *
## patch_sizeSmall -1.093 0.099 54.140 -11 2e-15 ***
## day -0.017 0.009 12.450 -2 0.09 .
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptch_M ptch_S
## patch_szMdm -0.235
## ptch_szSmll -0.277 0.424
## day -0.943 0.000 0.082
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(reduced_model))
response_variable = "bioarea_mm2_per_ml"
We want to know whether the size of ecosystems influenced this response variable. We only look at unconnected ecosystems so that the effects of connection don’t confound the effects of ecosystem size. We first start from plotting how this response variable changed in different sizes throughout the experiment through its mean ± 95 confidence interval:
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
save_results_in_table = TRUE
Following the initial inspection, we proceed to analyse differences among ecosystems. Our first step involves filtering the data to isolate the relevant data for analysis. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure that what filtered the data in the right way.
filtered_data = ds_patches %>%
filter(metaecosystem == "no",
time_point >= first_time_point_model,
time_point <= last_time_point_model,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
Then, given that we have gathered measurements from the same
ecosystem on multiple occasions, we can develop mixed effect models to
examine how ecosystem size influenced this variable. To study the
effects of ecosystem size we compare two models to a null model using
ANOVA: a full model and a reduced model. In all models, we treat culture
ID as having a random effect on how the slope and intercept of the
relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of size with time
(Response variable ~ size * day + (day | culture ID)), the
reduced model contains the size but without the interaction with time
(Response variable ~ size + day + (day | culture ID)), and
the null model doesn’t contain the size at all
(Response variable ~ day + (day | culture ID)). If any of
the two model comparisons is significant, then ecosystem size had an
effect.
full_model = lmer(
get(response_variable) ~
patch_size * day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
reduced_model = lmer(
get(response_variable) ~
patch_size + day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
Full model vs null model
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -33.7 < 0.001 **** very strong
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_size * day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 202.4 226.7 -91.2 182.4 74
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.36 -0.72 -0.01 0.53 2.48
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 2e-02 0.131
## day 5e-05 0.007 -1.00
## Residual 5e-01 0.715
## Number of obs: 84, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 5.94 0.37 15.56 15.9 5e-11 ***
## patch_sizeMedium -1.63 0.53 15.56 -3.1 0.007 **
## patch_sizeSmall -4.14 0.56 15.56 -7.4 2e-06 ***
## day -0.16 0.02 14.38 -8.3 8e-07 ***
## patch_sizeMedium:day 0.02 0.03 14.38 0.8 0.421
## patch_sizeSmall:day 0.08 0.03 14.38 2.9 0.011 *
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptch_M ptch_S day ptc_M:
## patch_szMdm -0.707
## ptch_szSmll -0.667 0.471
## day -0.937 0.662 0.624
## ptch_szMdm: 0.662 -0.937 -0.442 -0.707
## ptch_szSml: 0.624 -0.442 -0.937 -0.667 0.471
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(full_model))
Reduced vs null model
model_stats_reduced = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_reduced %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -30.8 < 0.001 **** very strong
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_size + day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 205.3 224.7 -94.6 189.3 76
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.1 -0.8 -0.1 0.7 2.4
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 0.419 0.65
## day 0.001 0.04 -1.00
## Residual 0.511 0.72
## Number of obs: 84, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 5.35 0.30 17.96 18 7e-13 ***
## patch_sizeMedium -1.22 0.18 69.16 -7 7e-09 ***
## patch_sizeSmall -2.60 0.20 69.16 -13 <2e-16 ***
## day -0.13 0.01 14.02 -9 6e-07 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptch_M ptch_S
## patch_szMdm -0.309
## ptch_szSmll -0.292 0.471
## day -0.899 0.000 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(reduced_model))
response_variable = "species_richness"
We want to know whether the size of ecosystems influenced this response variable. We only look at unconnected ecosystems so that the effects of connection don’t confound the effects of ecosystem size. We first start from plotting how this response variable changed in different sizes throughout the experiment through its mean ± 95 confidence interval:
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
save_results_in_table = TRUE
Following the initial inspection, we proceed to analyse differences among ecosystems. Our first step involves filtering the data to isolate the relevant data for analysis. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure that what filtered the data in the right way.
filtered_data = ds_patches %>%
filter(metaecosystem == "no",
time_point >= first_time_point_model,
time_point <= last_time_point_model,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
Then, given that we have gathered measurements from the same
ecosystem on multiple occasions, we can develop mixed effect models to
examine how ecosystem size influenced this variable. To study the
effects of ecosystem size we compare two models to a null model using
ANOVA: a full model and a reduced model. In all models, we treat culture
ID as having a random effect on how the slope and intercept of the
relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of size with time
(Response variable ~ size * day + (day | culture ID)), the
reduced model contains the size but without the interaction with time
(Response variable ~ size + day + (day | culture ID)), and
the null model doesn’t contain the size at all
(Response variable ~ day + (day | culture ID)). If any of
the two model comparisons is significant, then ecosystem size had an
effect.
full_model = lmer(
get(response_variable) ~
patch_size * day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
reduced_model = lmer(
get(response_variable) ~
patch_size + day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
Full model vs null model
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -37.8 < 0.001 **** very strong
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_size * day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 306.0 330.3 -143.0 286.0 74
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.52 -0.60 0.04 0.74 2.12
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 0e+00 0e+00
## day 1e-14 1e-07 NaN
## Residual 2e+00 1e+00
## Number of obs: 84, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 7.17 0.68 84.00 10.5 <2e-16 ***
## patch_sizeMedium 0.33 0.97 84.00 0.3 0.74
## patch_sizeSmall -1.09 1.02 84.00 -1.1 0.29
## day -0.02 0.04 84.00 -0.5 0.60
## patch_sizeMedium:day -0.09 0.05 84.00 -1.8 0.08 .
## patch_sizeSmall:day -0.22 0.05 84.00 -4.1 1e-04 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptch_M ptch_S day ptc_M:
## patch_szMdm -0.707
## ptch_szSmll -0.667 0.471
## day -0.935 0.661 0.623
## ptch_szMdm: 0.661 -0.935 -0.441 -0.707
## ptch_szSml: 0.623 -0.441 -0.935 -0.667 0.471
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(full_model))
Reduced vs null model
model_stats_reduced = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_reduced %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -28.7 < 0.001 **** very strong
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_size + day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 315.1 334.6 -149.6 299.1 76
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.4 -0.6 -0.1 0.5 2.4
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 1.795 1.34
## day 0.005 0.07 -1.00
## Residual 1.875 1.37
## Number of obs: 84, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 8.89 0.59 16.76 15 3e-11 ***
## patch_sizeMedium -1.30 0.35 66.58 -4 5e-04 ***
## patch_sizeSmall -5.08 0.38 66.58 -14 <2e-16 ***
## day -0.11 0.03 14.06 -4 0.002 **
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptch_M ptch_S
## patch_szMdm -0.302
## ptch_szSmll -0.284 0.471
## day -0.904 0.000 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(reduced_model))
response_variable = "evenness_pielou"
We want to know whether the size of ecosystems influenced this response variable. We only look at unconnected ecosystems so that the effects of connection don’t confound the effects of ecosystem size. We first start from plotting how this response variable changed in different sizes throughout the experiment through its mean ± 95 confidence interval:
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
## Warning in qt(conf.interval/2 + 0.5, datac$N - 1): NaNs produced
save_results_in_table = TRUE
Following the initial inspection, we proceed to analyse differences among ecosystems. Our first step involves filtering the data to isolate the relevant data for analysis. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure that what filtered the data in the right way.
filtered_data = ds_patches %>%
filter(metaecosystem == "no",
time_point >= first_time_point_model,
time_point <= last_time_point_model,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
## Warning in qt(conf.interval/2 + 0.5, datac$N - 1): NaNs produced
Then, given that we have gathered measurements from the same
ecosystem on multiple occasions, we can develop mixed effect models to
examine how ecosystem size influenced this variable. To study the
effects of ecosystem size we compare two models to a null model using
ANOVA: a full model and a reduced model. In all models, we treat culture
ID as having a random effect on how the slope and intercept of the
relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of size with time
(Response variable ~ size * day + (day | culture ID)), the
reduced model contains the size but without the interaction with time
(Response variable ~ size + day + (day | culture ID)), and
the null model doesn’t contain the size at all
(Response variable ~ day + (day | culture ID)). If any of
the two model comparisons is significant, then ecosystem size had an
effect.
full_model = lmer(
get(response_variable) ~
patch_size * day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
reduced_model = lmer(
get(response_variable) ~
patch_size + day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
Full model vs null model
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -37.6 < 0.001 **** very strong
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_size * day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -64.1 -41.1 42.1 -84.1 64
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.6 -0.6 0.2 0.5 3.0
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 0e+00 0e+00
## day 1e-17 4e-09 NaN
## Residual 2e-02 1e-01
## Number of obs: 74, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 8e-01 7e-02 7e+01 10.7 <2e-16 ***
## patch_sizeMedium -2e-01 1e-01 7e+01 -2.1 0.04 *
## patch_sizeSmall 5e-01 1e-01 7e+01 4.0 1e-04 ***
## day 5e-04 4e-03 7e+01 0.1 0.88
## patch_sizeMedium:day 1e-02 5e-03 7e+01 2.2 0.03 *
## patch_sizeSmall:day -5e-02 6e-03 7e+01 -7.5 1e-10 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptch_M ptch_S day ptc_M:
## patch_szMdm -0.707
## ptch_szSmll -0.623 0.441
## day -0.935 0.661 0.583
## ptch_szMdm: 0.661 -0.935 -0.412 -0.707
## ptch_szSml: 0.563 -0.398 -0.919 -0.602 0.426
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(full_model))
Reduced vs null model
model_stats_reduced = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_reduced %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -11.5 < 0.001 **** very strong
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_size + day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -38.1 -19.6 27.0 -54.1 66
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.2 -0.5 0.1 0.5 2.8
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 2e-01 0.44
## day 6e-04 0.02 -1.00
## Residual 2e-02 0.14
## Number of obs: 74, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 9e-01 1e-01 1e+01 7 8e-06 ***
## patch_sizeMedium -5e-04 4e-02 6e+01 0 1.0
## patch_sizeSmall -4e-01 5e-02 5e+01 -9 1e-11 ***
## day -8e-03 7e-03 1e+01 -1 0.2
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptch_M ptch_S
## patch_szMdm -0.139
## ptch_szSmll -0.142 0.389
## day -0.981 0.000 0.035
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(reduced_model))
response_variable = "median_body_area_µm2"
We want to know whether the size of ecosystems influenced this response variable. We only look at unconnected ecosystems so that the effects of connection don’t confound the effects of ecosystem size. We first start from plotting how this response variable changed in different sizes throughout the experiment through its mean ± 95 confidence interval:
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
## Warning in qt(conf.interval/2 + 0.5, datac$N - 1): NaNs produced
save_results_in_table = TRUE
Following the initial inspection, we proceed to analyse differences among ecosystems. Our first step involves filtering the data to isolate the relevant data for analysis. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure that what filtered the data in the right way.
filtered_data = ds_patches %>%
filter(metaecosystem == "no",
time_point >= first_time_point_model,
time_point <= last_time_point_model,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
## Warning in qt(conf.interval/2 + 0.5, datac$N - 1): NaNs produced
Then, given that we have gathered measurements from the same
ecosystem on multiple occasions, we can develop mixed effect models to
examine how ecosystem size influenced this variable. To study the
effects of ecosystem size we compare two models to a null model using
ANOVA: a full model and a reduced model. In all models, we treat culture
ID as having a random effect on how the slope and intercept of the
relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of size with time
(Response variable ~ size * day + (day | culture ID)), the
reduced model contains the size but without the interaction with time
(Response variable ~ size + day + (day | culture ID)), and
the null model doesn’t contain the size at all
(Response variable ~ day + (day | culture ID)). If any of
the two model comparisons is significant, then ecosystem size had an
effect.
full_model = lmer(
get(response_variable) ~
patch_size * day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
reduced_model = lmer(
get(response_variable) ~
patch_size + day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
Full model vs null model
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -1.2 0.057 * weak
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_size * day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 1285.6 1309.2 -632.8 1265.6 68
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.85 -0.45 0.04 0.59 2.84
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 1e+05 310
## day 3e+01 6 -1.00
## Residual 6e+05 782
## Number of obs: 78, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 3337 426 23 7.8 6e-08 ***
## patch_sizeMedium -21 602 23 0.0 0.97
## patch_sizeSmall -1222 680 28 -1.8 0.08 .
## day -7 21 44 -0.3 0.73
## patch_sizeMedium:day 31 30 44 1.1 0.30
## patch_sizeSmall:day 66 36 50 1.8 0.08 .
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptch_M ptch_S day ptc_M:
## patch_szMdm -0.707
## ptch_szSmll -0.626 0.443
## day -0.916 0.648 0.574
## ptch_szMdm: 0.648 -0.916 -0.406 -0.707
## ptch_szSml: 0.531 -0.375 -0.913 -0.579 0.410
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(full_model))
Reduced vs null model
model_stats_reduced = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_reduced %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -2 0.05 * weak
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_size + day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 1284.8 1303.7 -634.4 1268.8 70
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.98 -0.34 0.05 0.55 2.75
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 2e+05 434
## day 2e+02 14 -1.00
## Residual 6e+05 800
## Number of obs: 78, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 2846 314 21 9.0 1e-08 ***
## patch_sizeMedium 576 235 11 2.5 0.03 *
## patch_sizeSmall -63 273 14 -0.2 0.82
## day 18 14 22 1.3 0.20
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptch_M ptch_S
## patch_szMdm -0.373
## ptch_szSmll -0.419 0.429
## day -0.850 0.000 0.116
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(reduced_model))
response_variable = "auto_hetero_ratio"
We want to know whether the size of ecosystems influenced this response variable. We only look at unconnected ecosystems so that the effects of connection don’t confound the effects of ecosystem size. We first start from plotting how this response variable changed in different sizes throughout the experiment through its mean ± 95 confidence interval:
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
## Warning in qt(conf.interval/2 + 0.5, datac$N - 1): NaNs produced
save_results_in_table = TRUE
Following the initial inspection, we proceed to analyse differences among ecosystems. Our first step involves filtering the data to isolate the relevant data for analysis. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure that what filtered the data in the right way.
filtered_data = ds_patches %>%
filter(metaecosystem == "no",
time_point >= first_time_point_model,
time_point <= last_time_point_model,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
## Warning in qt(conf.interval/2 + 0.5, datac$N - 1): NaNs produced
Then, given that we have gathered measurements from the same
ecosystem on multiple occasions, we can develop mixed effect models to
examine how ecosystem size influenced this variable. To study the
effects of ecosystem size we compare two models to a null model using
ANOVA: a full model and a reduced model. In all models, we treat culture
ID as having a random effect on how the slope and intercept of the
relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of size with time
(Response variable ~ size * day + (day | culture ID)), the
reduced model contains the size but without the interaction with time
(Response variable ~ size + day + (day | culture ID)), and
the null model doesn’t contain the size at all
(Response variable ~ day + (day | culture ID)). If any of
the two model comparisons is significant, then ecosystem size had an
effect.
full_model = lmer(
get(response_variable) ~
patch_size * day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
reduced_model = lmer(
get(response_variable) ~
patch_size + day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
Full model vs null model
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -3.1 0.026 ** moderate
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_size * day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -2.3 21.3 11.2 -22.3 68
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.5 -0.4 -0.1 0.3 6.2
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 2e-02 0.14
## day 1e-04 0.01 -1.00
## Residual 4e-02 0.20
## Number of obs: 78, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) -0.153 0.120 22.622 -1 0.215
## patch_sizeMedium 0.218 0.170 22.622 1 0.211
## patch_sizeSmall 0.317 0.189 26.479 2 0.106
## day 0.024 0.007 15.956 3 0.005 **
## patch_sizeMedium:day -0.022 0.010 15.956 -2 0.046 *
## patch_sizeSmall:day -0.030 0.012 21.388 -3 0.017 *
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptch_M ptch_S day ptc_M:
## patch_szMdm -0.707
## ptch_szSmll -0.633 0.448
## day -0.943 0.667 0.597
## ptch_szMdm: 0.667 -0.943 -0.422 -0.707
## ptch_szSml: 0.579 -0.410 -0.944 -0.614 0.434
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(full_model))
Reduced vs null model
model_stats_reduced = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_reduced %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -0.4 0.109 none
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_size + day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 0.3 19.2 7.8 -15.7 70
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.5 -0.3 -0.1 0.3 6.0
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 5e-02 0.22
## day 3e-04 0.02 -1.00
## Residual 4e-02 0.20
## Number of obs: 78, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 0.091 0.093 23.009 1 0.34
## patch_sizeMedium -0.122 0.056 42.120 -2 0.04 *
## patch_sizeSmall -0.146 0.062 50.826 -2 0.02 *
## day 0.008 0.005 15.176 1 0.17
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptch_M ptch_S
## patch_szMdm -0.303
## ptch_szSmll -0.312 0.452
## day -0.903 0.000 0.042
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(reduced_model))
for(patch_type_i in patch_type_i){
print(patch_type_i)
p = ds_patches %>%
filter(patch_type == patch_type_i) %>%
group_by(day) %>%
summarise(
Ble = mean(Ble_indiv_per_ml_dominance, na.rm = TRUE),
# Ble_se = sd(Ble_indiv_per_ml_dominance, na.rm = TRUE) / sqrt(n()),
# Ble_ci = qt(c(0.025, 0.975), df = n() - 1) * Ble_se,
Cep = mean(Cep_indiv_per_ml_dominance, na.rm = TRUE),
Col = mean(Col_indiv_per_ml_dominance, na.rm = TRUE),
Eug = mean(Eug_indiv_per_ml_dominance, na.rm = TRUE),
Eup = mean(Eup_indiv_per_ml_dominance, na.rm = TRUE),
Lox = mean(Lox_indiv_per_ml_dominance, na.rm = TRUE),
Pau = mean(Pau_indiv_per_ml_dominance, na.rm = TRUE),
Pca = mean(Pca_indiv_per_ml_dominance, na.rm = TRUE),
Spi = mean(Spi_indiv_per_ml_dominance, na.rm = TRUE),
Spi_te = mean(Spi_te_indiv_per_ml_dominance, na.rm = TRUE),
Tet = mean(Tet_indiv_per_ml_dominance, na.rm = TRUE)
) %>%
pivot_longer(Ble:Tet, names_to = "species", values_to = "species_indiv_per_ml") %>%
ggplot(aes(
x = day,
y = species_indiv_per_ml,
group = interaction(day, species),
color = species
)) +
geom_point(position = position_dodge(dodging),
size = treatment_points_size) +
geom_line(
aes(group = species),
position = position_dodge(dodging),
linewidth = treatment_lines_linewidth) +
labs(x = axis_names %>%
filter(variable == "day") %>%
pull(axis_name),
y = axis_names %>%
filter(variable == "dominance") %>%
pull(axis_name)) +
coord_cartesian(ylim = c(0, 100))
print(p)
}
## [1] "Small unconnected"
## [1] "Medium unconnected"
## [1] "Large unconnected"
patch_type_i = c("Small connected to large",
"Small unconnected")
response_variable = "shannon"
We want to know whether the connection influenced this response variable. We first start from plotting how this response variable changed in connected and unconnected ecosystems throughout the experiment through its mean ± 95 confidence interval:
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
## Warning in qt(conf.interval/2 + 0.5, datac$N - 1): NaNs produced
Following the initial inspection, we proceed to analyse differences among ecosystems. Our first step involves filtering the data to isolate the relevant data for analysis. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure that what filtered the data in the right way.
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
## Warning in qt(conf.interval/2 + 0.5, datac$N - 1): NaNs produced
Then, given that we have gathered measurements from the same
ecosystem on multiple occasions, we can develop mixed effect models to
examine how the connection influenced this variable. To study the
effects of ecosystem connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
culture ID as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | culture ID)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | culture ID)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | culture ID)). If any of
the two model comparisons is significant, then ecosystem connection had
an effect.
full_model = lmer(
get(response_variable) ~
patch_type * day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
reduced_model = lmer(
get(response_variable) ~
patch_type + day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
Full model vs null model
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -5.4 0.009 *** strong
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type * day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 62.7 77.6 -23.3 46.7 40
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.5 -0.5 0.1 0.6 2.6
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 5e-04 0.023
## day 4e-05 0.006 -1.00
## Residual 1e-01 0.382
## Number of obs: 48, groups: culture_ID, 9
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 2.017 0.197 38.690 10.2 1e-12 ***
## patch_typeSmall unconnected -0.391 0.317 39.094 -1.2 0.2
## day -0.065 0.011 24.167 -6.1 2e-06 ***
## patch_typeSmall unconnected:day -0.007 0.018 30.372 -0.4 0.7
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Su day
## ptch_typSmu -0.622
## day -0.913 0.568
## ptch_typSu: 0.533 -0.915 -0.584
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(full_model))
Reduced vs null model
model_stats_reduced = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_reduced %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -7.2 0.002 *** strong
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type + day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 60.8 73.9 -23.4 46.8 41
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.5 -0.5 0.1 0.6 2.6
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 5e-04 0.023
## day 4e-05 0.006 -1.00
## Residual 1e-01 0.383
## Number of obs: 48, groups: culture_ID, 9
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 2.058 0.167 43.391 12 9e-16 ***
## patch_typeSmall unconnected -0.504 0.128 14.192 -4 0.001 **
## day -0.068 0.009 27.070 -8 2e-08 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Su
## ptch_typSmu -0.394
## day -0.876 0.103
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(reduced_model))
response_variable = "bioarea_mm2_per_ml"
We want to know whether the connection influenced this response variable. We first start from plotting how this response variable changed in connected and unconnected ecosystems throughout the experiment through its mean ± 95 confidence interval:
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
Following the initial inspection, we proceed to analyse differences among ecosystems. Our first step involves filtering the data to isolate the relevant data for analysis. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure that what filtered the data in the right way.
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
Then, given that we have gathered measurements from the same
ecosystem on multiple occasions, we can develop mixed effect models to
examine how the connection influenced this variable. To study the
effects of ecosystem connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
culture ID as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | culture ID)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | culture ID)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | culture ID)). If any of
the two model comparisons is significant, then ecosystem connection had
an effect.
full_model = lmer(
get(response_variable) ~
patch_type * day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
reduced_model = lmer(
get(response_variable) ~
patch_type + day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
Full model vs null model
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -3.9 0.019 ** moderate
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type * day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 113.7 129.6 -48.8 97.7 46
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.1 -0.6 0.0 0.5 3.3
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 2e-11 5e-06
## day 1e-14 1e-07 -1.00
## Residual 4e-01 6e-01
## Number of obs: 54, groups: culture_ID, 9
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 3.04 0.31 54.00 10 1e-13 ***
## patch_typeSmall unconnected -1.24 0.46 54.00 -3 0.009 **
## day -0.12 0.02 54.00 -8 7e-10 ***
## patch_typeSmall unconnected:day 0.04 0.02 54.00 2 0.068 .
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Su day
## ptch_typSmu -0.667
## day -0.935 0.623
## ptch_typSu: 0.623 -0.935 -0.667
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(full_model))
Reduced vs null model
model_stats_reduced = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_reduced %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -2.6 0.032 ** moderate
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type + day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 115.0 128.9 -50.5 101.0 47
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -1.9 -0.7 -0.1 0.4 3.4
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 6e-02 0.24
## day 1e-04 0.01 -1.00
## Residual 4e-01 0.61
## Number of obs: 54, groups: culture_ID, 9
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 2.68 0.26 9.52 10 2e-06 ***
## patch_typeSmall unconnected -0.43 0.17 44.23 -2 0.01 *
## day -0.10 0.01 11.58 -8 6e-06 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Su
## ptch_typSmu -0.290
## day -0.900 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(reduced_model))
response_variable = "species_richness"
We want to know whether the connection influenced this response variable. We first start from plotting how this response variable changed in connected and unconnected ecosystems throughout the experiment through its mean ± 95 confidence interval:
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
Following the initial inspection, we proceed to analyse differences among ecosystems. Our first step involves filtering the data to isolate the relevant data for analysis. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure that what filtered the data in the right way.
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
Then, given that we have gathered measurements from the same
ecosystem on multiple occasions, we can develop mixed effect models to
examine how the connection influenced this variable. To study the
effects of ecosystem connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
culture ID as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | culture ID)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | culture ID)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | culture ID)). If any of
the two model comparisons is significant, then ecosystem connection had
an effect.
full_model = lmer(
get(response_variable) ~
patch_type * day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
reduced_model = lmer(
get(response_variable) ~
patch_type + day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
Full model vs null model
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -7.3 0.003 *** strong
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type * day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 207.1 223.0 -95.6 191.1 46
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.06 -0.56 0.07 0.41 2.34
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 0e+00 0e+00
## day 6e-15 8e-08 NaN
## Residual 2e+00 1e+00
## Number of obs: 54, groups: culture_ID, 9
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 8.12 0.73 54.00 11.1 1e-15 ***
## patch_typeSmall unconnected -2.04 1.10 54.00 -1.9 0.07 .
## day -0.27 0.04 54.00 -7.0 4e-09 ***
## patch_typeSmall unconnected:day 0.03 0.06 54.00 0.5 0.60
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Su day
## ptch_typSmu -0.667
## day -0.935 0.623
## ptch_typSu: 0.623 -0.935 -0.667
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(full_model))
Reduced vs null model
model_stats_reduced = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_reduced %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -9 0.001 *** strong
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type + day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 205.4 219.3 -95.7 191.4 47
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.0 -0.6 0.1 0.5 2.2
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 0e+00 0e+00
## day 2e-14 1e-07 NaN
## Residual 2e+00 1e+00
## Number of obs: 54, groups: culture_ID, 9
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 7.88 0.57 54.00 14 <2e-16 ***
## patch_typeSmall unconnected -1.50 0.39 54.00 -4 3e-04 ***
## day -0.25 0.03 54.00 -9 4e-12 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Su
## ptch_typSmu -0.302
## day -0.891 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(reduced_model))
response_variable = "evenness_pielou"
We want to know whether the connection influenced this response variable. We first start from plotting how this response variable changed in connected and unconnected ecosystems throughout the experiment through its mean ± 95 confidence interval:
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
## Warning in qt(conf.interval/2 + 0.5, datac$N - 1): NaNs produced
Following the initial inspection, we proceed to analyse differences among ecosystems. Our first step involves filtering the data to isolate the relevant data for analysis. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure that what filtered the data in the right way.
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
## Warning in qt(conf.interval/2 + 0.5, datac$N - 1): NaNs produced
Then, given that we have gathered measurements from the same
ecosystem on multiple occasions, we can develop mixed effect models to
examine how the connection influenced this variable. To study the
effects of ecosystem connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
culture ID as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | culture ID)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | culture ID)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | culture ID)). If any of
the two model comparisons is significant, then ecosystem connection had
an effect.
full_model = lmer(
get(response_variable) ~
patch_type * day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
reduced_model = lmer(
get(response_variable) ~
patch_type + day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
Full model vs null model
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -23.9 < 0.001 **** very strong
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type * day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -17.4 -4.5 16.7 -33.4 29
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.2 -0.5 0.0 0.4 2.7
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 2e-03 0.047
## day 4e-06 0.002 -1.00
## Residual 2e-02 0.153
## Number of obs: 37, groups: culture_ID, 9
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 0.820 0.089 10.000 9.2 3e-06 ***
## patch_typeSmall unconnected 0.393 0.135 10.380 2.9 0.01 *
## day 0.004 0.005 24.672 0.9 0.39
## patch_typeSmall unconnected:day -0.050 0.007 23.986 -6.6 7e-07 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Su day
## ptch_typSmu -0.660
## day -0.931 0.614
## ptch_typSu: 0.629 -0.920 -0.676
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(full_model))
Reduced vs null model
model_stats_reduced = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_reduced %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -8.4 0.001 *** strong
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type + day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -2.0 9.3 8.0 -16.0 30
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.77 -0.50 -0.06 0.48 2.39
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 2e-01 0.46
## day 6e-04 0.02 -1.00
## Residual 2e-02 0.16
## Number of obs: 37, groups: culture_ID, 9
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 1.236 0.168 7.497 7 1e-04 ***
## patch_typeSmall unconnected -0.537 0.057 22.910 -10 2e-09 ***
## day -0.018 0.009 8.949 -2 0.07 .
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Su
## ptch_typSmu -0.113
## day -0.977 -0.022
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(reduced_model))
response_variable = "median_body_area_µm2"
We want to know whether the connection influenced this response variable. We first start from plotting how this response variable changed in connected and unconnected ecosystems throughout the experiment through its mean ± 95 confidence interval:
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
## Warning in qt(conf.interval/2 + 0.5, datac$N - 1): NaNs produced
Following the initial inspection, we proceed to analyse differences among ecosystems. Our first step involves filtering the data to isolate the relevant data for analysis. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure that what filtered the data in the right way.
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
## Warning in qt(conf.interval/2 + 0.5, datac$N - 1): NaNs produced
Then, given that we have gathered measurements from the same
ecosystem on multiple occasions, we can develop mixed effect models to
examine how the connection influenced this variable. To study the
effects of ecosystem connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
culture ID as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | culture ID)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | culture ID)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | culture ID)). If any of
the two model comparisons is significant, then ecosystem connection had
an effect.
full_model = lmer(
get(response_variable) ~
patch_type * day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
reduced_model = lmer(
get(response_variable) ~
patch_type + day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
## Warning: Model failed to converge with 1 negative eigenvalue: -1.3e-02
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
## Warning: Model failed to converge with 1 negative eigenvalue: -3.0e-02
Full model vs null model
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 2.7 0.512 none
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type * day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 827.3 842.3 -405.7 811.3 40
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.79 -0.38 -0.03 0.62 1.77
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 8e+03 87
## day 2e+03 49 -1.00
## Residual 1e+06 982
## Number of obs: 48, groups: culture_ID, 9
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 2364 507 37 4.7 4e-05 ***
## patch_typeSmall unconnected -325 815 38 -0.4 0.69
## day 83 34 11 2.5 0.03 *
## patch_typeSmall unconnected:day -20 56 15 -0.4 0.72
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Su day
## ptch_typSmu -0.621
## day -0.767 0.477
## ptch_typSu: 0.468 -0.797 -0.609
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(full_model))
Reduced vs null model
model_stats_reduced = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_reduced %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 0.9 0.284 none
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type + day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 825.5 838.6 -405.8 811.5 41
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.79 -0.46 -0.03 0.58 1.78
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 0e+00 0
## day 2e+03 44 NaN
## Residual 1e+06 983
## Number of obs: 48, groups: culture_ID, 9
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 2451 451 40 5 3e-06 ***
## patch_typeSmall unconnected -561 511 11 -1 0.30
## day 76 26 15 3 0.01 *
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Su
## ptch_typSmu -0.481
## day -0.665 -0.017
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(reduced_model))
for(patch_type_i in patch_type_i){
print(patch_type_i)
p = ds_patches %>%
filter(patch_type == patch_type_i) %>%
group_by(day) %>%
summarise(
Ble = mean(Ble_indiv_per_ml_dominance, na.rm = TRUE),
# Ble_se = sd(Ble_indiv_per_ml_dominance, na.rm = TRUE) / sqrt(n()),
# Ble_ci = qt(c(0.025, 0.975), df = n() - 1) * Ble_se,
Cep = mean(Cep_indiv_per_ml_dominance, na.rm = TRUE),
Col = mean(Col_indiv_per_ml_dominance, na.rm = TRUE),
Eug = mean(Eug_indiv_per_ml_dominance, na.rm = TRUE),
Eup = mean(Eup_indiv_per_ml_dominance, na.rm = TRUE),
Lox = mean(Lox_indiv_per_ml_dominance, na.rm = TRUE),
Pau = mean(Pau_indiv_per_ml_dominance, na.rm = TRUE),
Pca = mean(Pca_indiv_per_ml_dominance, na.rm = TRUE),
Spi = mean(Spi_indiv_per_ml_dominance, na.rm = TRUE),
Spi_te = mean(Spi_te_indiv_per_ml_dominance, na.rm = TRUE),
Tet = mean(Tet_indiv_per_ml_dominance, na.rm = TRUE)
) %>%
pivot_longer(Ble:Tet, names_to = "species", values_to = "species_indiv_per_ml") %>%
ggplot(aes(
x = day,
y = species_indiv_per_ml,
group = interaction(day, species),
color = species
)) +
geom_point(position = position_dodge(dodging),
size = treatment_points_size) +
geom_line(
aes(group = species),
position = position_dodge(dodging),
linewidth = treatment_lines_linewidth) +
labs(x = axis_names %>%
filter(variable == "day") %>%
pull(axis_name),
y = axis_names %>%
filter(variable == "dominance") %>%
pull(axis_name)) +
coord_cartesian(ylim = c(0, 100))
print(p)
}
## [1] "Small connected to large"
## [1] "Small unconnected"
patch_type_i = c("Small connected to large",
"Small connected to small")
response_variable = "shannon"
We want to know whether the connection influenced this response variable. We first start from plotting how this response variable changed in connected and unconnected ecosystems throughout the experiment through its mean ± 95 confidence interval:
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
Following the initial inspection, we proceed to analyse differences among ecosystems. Our first step involves filtering the data to isolate the relevant data for analysis. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure that what filtered the data in the right way.
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
Then, given that we have gathered measurements from the same
ecosystem on multiple occasions, we can develop mixed effect models to
examine how the connection influenced this variable. To study the
effects of ecosystem connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
culture ID as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | culture ID)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | culture ID)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | culture ID)). If any of
the two model comparisons is significant, then ecosystem connection had
an effect.
full_model = lmer(
get(response_variable) ~
patch_type * day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
reduced_model = lmer(
get(response_variable) ~
patch_type + day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
Full model vs null model
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -2.2 0.045 ** moderate
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type * day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 74.2 93.7 -29.1 58.2 76
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.11 -0.47 0.01 0.68 2.55
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 2e-02 0.15
## day 2e-04 0.01 -1.00
## Residual 1e-01 0.32
## Number of obs: 84, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value
## (Intercept) 2.017 0.179 28.034 11.2
## patch_typeSmall connected to small -0.177 0.224 29.392 -0.8
## day -0.065 0.011 15.965 -6.0
## patch_typeSmall connected to small:day -0.004 0.014 17.612 -0.3
## Pr(>|t|)
## (Intercept) 7e-12 ***
## patch_typeSmall connected to small 0.4
## day 2e-05 ***
## patch_typeSmall connected to small:day 0.8
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) pt_Scts day
## ptch_tyScts -0.800
## day -0.920 0.736
## ptch_tScts: 0.727 -0.923 -0.790
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(full_model))
Reduced vs null model
model_stats_reduced = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_reduced %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -4.1 0.013 ** moderate
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type + day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 72.3 89.3 -29.2 58.3 77
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.09 -0.48 0.02 0.70 2.59
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 2e-02 0.16
## day 2e-04 0.01 -1.00
## Residual 1e-01 0.32
## Number of obs: 84, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 2.051 0.123 52.993 17 <2e-16
## patch_typeSmall connected to small -0.231 0.086 26.679 -3 0.01
## day -0.067 0.007 18.757 -10 4e-09
##
## (Intercept) ***
## patch_typeSmall connected to small *
## day ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) p_Scts
## ptch_tyScts -0.486
## day -0.822 0.028
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(reduced_model))
response_variable = "bioarea_mm2_per_ml"
We want to know whether the connection influenced this response variable. We first start from plotting how this response variable changed in connected and unconnected ecosystems throughout the experiment through its mean ± 95 confidence interval:
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
Following the initial inspection, we proceed to analyse differences among ecosystems. Our first step involves filtering the data to isolate the relevant data for analysis. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure that what filtered the data in the right way.
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
Then, given that we have gathered measurements from the same
ecosystem on multiple occasions, we can develop mixed effect models to
examine how the connection influenced this variable. To study the
effects of ecosystem connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
culture ID as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | culture ID)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | culture ID)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | culture ID)). If any of
the two model comparisons is significant, then ecosystem connection had
an effect.
full_model = lmer(
get(response_variable) ~
patch_type * day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
reduced_model = lmer(
get(response_variable) ~
patch_type + day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
Full model vs null model
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -1.6 0.06 * weak
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type * day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 158.7 178.7 -71.4 142.7 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.4 -0.6 0.0 0.5 3.6
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 5e-02 0.23
## day 9e-05 0.01 -1.00
## Residual 3e-01 0.53
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value
## (Intercept) 3.04 0.29 16.95 10
## patch_typeSmall connected to small -0.82 0.36 16.95 -2
## day -0.12 0.01 28.24 -8
## patch_typeSmall connected to small:day 0.03 0.02 28.24 2
## Pr(>|t|)
## (Intercept) 8e-09 ***
## patch_typeSmall connected to small 0.03 *
## day 8e-09 ***
## patch_typeSmall connected to small:day 0.09 .
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) pt_Scts day
## ptch_tyScts -0.816
## day -0.940 0.768
## ptch_tScts: 0.768 -0.940 -0.816
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(full_model))
Reduced vs null model
model_stats_reduced = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_reduced %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -0.6 0.104 none
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type + day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 159.7 177.2 -72.8 145.7 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.2 -0.7 0.0 0.5 3.7
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 1e-01 0.34
## day 2e-04 0.02 -1.00
## Residual 3e-01 0.53
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 2.637 0.198 19.628 13 3e-11
## patch_typeSmall connected to small -0.218 0.123 54.872 -2 0.08
## day -0.098 0.009 20.642 -11 6e-10
##
## (Intercept) ***
## patch_typeSmall connected to small .
## day ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) p_Scts
## ptch_tyScts -0.414
## day -0.862 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(reduced_model))
response_variable = "species_richness"
We want to know whether the connection influenced this response variable. We first start from plotting how this response variable changed in connected and unconnected ecosystems throughout the experiment through its mean ± 95 confidence interval:
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
Following the initial inspection, we proceed to analyse differences among ecosystems. Our first step involves filtering the data to isolate the relevant data for analysis. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure that what filtered the data in the right way.
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
Then, given that we have gathered measurements from the same
ecosystem on multiple occasions, we can develop mixed effect models to
examine how the connection influenced this variable. To study the
effects of ecosystem connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
culture ID as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | culture ID)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | culture ID)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | culture ID)). If any of
the two model comparisons is significant, then ecosystem connection had
an effect.
full_model = lmer(
get(response_variable) ~
patch_type * day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
reduced_model = lmer(
get(response_variable) ~
patch_type + day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
Full model vs null model
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -7.6 0.003 *** strong
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type * day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 294.1 314.1 -139.0 278.1 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.58 -0.65 0.01 0.43 2.93
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 0e+00 0e+00
## day 4e-13 6e-07 NaN
## Residual 1e+00 1e+00
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value
## (Intercept) 8.12 0.58 90.00 14
## patch_typeSmall connected to small -1.93 0.71 90.00 -3
## day -0.27 0.03 90.00 -9
## patch_typeSmall connected to small:day 0.06 0.04 90.00 2
## Pr(>|t|)
## (Intercept) <2e-16 ***
## patch_typeSmall connected to small 0.008 **
## day 1e-13 ***
## patch_typeSmall connected to small:day 0.132
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) pt_Scts day
## ptch_tyScts -0.816
## day -0.935 0.763
## ptch_tScts: 0.763 -0.935 -0.816
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(full_model))
Reduced vs null model
model_stats_reduced = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_reduced %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -7.3 0.002 *** strong
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type + day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 294.3 311.8 -140.2 280.3 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.43 -0.74 0.03 0.26 2.95
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 0e+00 0e+00
## day 6e-14 3e-07 NaN
## Residual 1e+00 1e+00
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 7.44 0.38 90.00 20 <2e-16
## patch_typeSmall connected to small -0.92 0.26 90.00 -4 6e-04
## day -0.23 0.02 90.00 -13 <2e-16
##
## (Intercept) ***
## patch_typeSmall connected to small ***
## day ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) p_Scts
## ptch_tyScts -0.448
## day -0.836 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(reduced_model))
response_variable = "evenness_pielou"
We want to know whether the connection influenced this response variable. We first start from plotting how this response variable changed in connected and unconnected ecosystems throughout the experiment through its mean ± 95 confidence interval:
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
Following the initial inspection, we proceed to analyse differences among ecosystems. Our first step involves filtering the data to isolate the relevant data for analysis. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure that what filtered the data in the right way.
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
Then, given that we have gathered measurements from the same
ecosystem on multiple occasions, we can develop mixed effect models to
examine how the connection influenced this variable. To study the
effects of ecosystem connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
culture ID as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | culture ID)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | culture ID)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | culture ID)). If any of
the two model comparisons is significant, then ecosystem connection had
an effect.
full_model = lmer(
get(response_variable) ~
patch_type * day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
reduced_model = lmer(
get(response_variable) ~
patch_type + day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
Full model vs null model
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -7.1 0.004 *** strong
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type * day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -15.9 1.8 15.9 -31.9 59
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.13 -0.61 0.03 0.52 2.23
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 1e-02 0.118
## day 9e-05 0.009 -1.00
## Residual 3e-02 0.180
## Number of obs: 67, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value
## (Intercept) 0.821 0.117 27.360 7.0
## patch_typeSmall connected to small 0.383 0.142 26.723 2.7
## day 0.004 0.007 16.874 0.6
## patch_typeSmall connected to small:day -0.034 0.009 16.314 -3.7
## Pr(>|t|)
## (Intercept) 1e-07 ***
## patch_typeSmall connected to small 0.012 *
## day 0.567
## patch_typeSmall connected to small:day 0.002 **
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) pt_Scts day
## ptch_tyScts -0.823
## day -0.940 0.773
## ptch_tScts: 0.775 -0.938 -0.824
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(full_model))
Reduced vs null model
model_stats_reduced = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_reduced %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 0.3 0.187 none
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type + day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -8.6 6.9 11.3 -22.6 60
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.4 -0.6 0.0 0.5 1.8
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 6e-02 0.23
## day 3e-04 0.02 -1.00
## Residual 3e-02 0.18
## Number of obs: 67, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 1.125 0.092 23.749 12 1e-11
## patch_typeSmall connected to small -0.084 0.051 45.033 -2 0.11
## day -0.018 0.006 15.210 -3 0.01
##
## (Intercept) ***
## patch_typeSmall connected to small
## day **
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) p_Scts
## ptch_tyScts -0.363
## day -0.895 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(reduced_model))
response_variable = "median_body_area_µm2"
We want to know whether the connection influenced this response variable. We first start from plotting how this response variable changed in connected and unconnected ecosystems throughout the experiment through its mean ± 95 confidence interval:
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
Following the initial inspection, we proceed to analyse differences among ecosystems. Our first step involves filtering the data to isolate the relevant data for analysis. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure that what filtered the data in the right way.
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
Then, given that we have gathered measurements from the same
ecosystem on multiple occasions, we can develop mixed effect models to
examine how the connection influenced this variable. To study the
effects of ecosystem connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
culture ID as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | culture ID)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | culture ID)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | culture ID)). If any of
the two model comparisons is significant, then ecosystem connection had
an effect.
full_model = lmer(
get(response_variable) ~
patch_type * day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
reduced_model = lmer(
get(response_variable) ~
patch_type + day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
Full model vs null model
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -1.4 0.068 * weak
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type * day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 1445.3 1464.8 -714.7 1429.3 76
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.6 -0.4 0.1 0.6 1.8
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 7e+04 272
## day 1e+03 39 -1.00
## Residual 1e+06 1129
## Number of obs: 84, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value
## (Intercept) 2364 593 50 4
## patch_typeSmall connected to small 958 745 51 1
## day 83 35 21 2
## patch_typeSmall connected to small:day -94 44 23 -2
## Pr(>|t|)
## (Intercept) 2e-04 ***
## patch_typeSmall connected to small 0.20
## day 0.03 *
## patch_typeSmall connected to small:day 0.04 *
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) pt_Scts day
## ptch_tyScts -0.797
## day -0.896 0.714
## ptch_tScts: 0.702 -0.900 -0.784
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(full_model))
Reduced vs null model
model_stats_reduced = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_reduced %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 0.7 0.246 none
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type + day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 1447.4 1464.4 -716.7 1433.4 77
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.6 -0.5 0.1 0.6 1.9
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 3e+05 525
## day 3e+03 54 -1.00
## Residual 1e+06 1142
## Number of obs: 84, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 3222 441 58 7 9e-10
## patch_typeSmall connected to small -421 321 25 -1 0.2
## day 25 24 18 1 0.3
##
## (Intercept) ***
## patch_typeSmall connected to small
## day
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) p_Scts
## ptch_tyScts -0.502
## day -0.805 0.024
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(reduced_model))
for(patch_type_i in patch_type_i){
print(patch_type_i)
p = ds_patches %>%
filter(patch_type == patch_type_i) %>%
group_by(day) %>%
summarise(
Ble = mean(Ble_indiv_per_ml_dominance, na.rm = TRUE),
# Ble_se = sd(Ble_indiv_per_ml_dominance, na.rm = TRUE) / sqrt(n()),
# Ble_ci = qt(c(0.025, 0.975), df = n() - 1) * Ble_se,
Cep = mean(Cep_indiv_per_ml_dominance, na.rm = TRUE),
Col = mean(Col_indiv_per_ml_dominance, na.rm = TRUE),
Eug = mean(Eug_indiv_per_ml_dominance, na.rm = TRUE),
Eup = mean(Eup_indiv_per_ml_dominance, na.rm = TRUE),
Lox = mean(Lox_indiv_per_ml_dominance, na.rm = TRUE),
Pau = mean(Pau_indiv_per_ml_dominance, na.rm = TRUE),
Pca = mean(Pca_indiv_per_ml_dominance, na.rm = TRUE),
Spi = mean(Spi_indiv_per_ml_dominance, na.rm = TRUE),
Spi_te = mean(Spi_te_indiv_per_ml_dominance, na.rm = TRUE),
Tet = mean(Tet_indiv_per_ml_dominance, na.rm = TRUE)
) %>%
pivot_longer(Ble:Tet, names_to = "species", values_to = "species_indiv_per_ml") %>%
ggplot(aes(
x = day,
y = species_indiv_per_ml,
group = interaction(day, species),
color = species
)) +
geom_point(position = position_dodge(dodging),
size = treatment_points_size) +
geom_line(
aes(group = species),
position = position_dodge(dodging),
linewidth = treatment_lines_linewidth) +
labs(x = axis_names %>%
filter(variable == "day") %>%
pull(axis_name),
y = axis_names %>%
filter(variable == "dominance") %>%
pull(axis_name)) +
coord_cartesian(ylim = c(0, 100))
print(p)
}
## [1] "Small connected to large"
## [1] "Small connected to small"
patch_type_i = c("Small connected to small",
"Small unconnected")
response_variable = "shannon"
We want to know whether the connection influenced this response variable. We first start from plotting how this response variable changed in connected and unconnected ecosystems throughout the experiment through its mean ± 95 confidence interval:
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
## Warning in qt(conf.interval/2 + 0.5, datac$N - 1): NaNs produced
Following the initial inspection, we proceed to analyse differences among ecosystems. Our first step involves filtering the data to isolate the relevant data for analysis. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure that what filtered the data in the right way.
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
## Warning in qt(conf.interval/2 + 0.5, datac$N - 1): NaNs produced
Then, given that we have gathered measurements from the same
ecosystem on multiple occasions, we can develop mixed effect models to
examine how the connection influenced this variable. To study the
effects of ecosystem connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
culture ID as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | culture ID)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | culture ID)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | culture ID)). If any of
the two model comparisons is significant, then ecosystem connection had
an effect.
full_model = lmer(
get(response_variable) ~
patch_type * day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
reduced_model = lmer(
get(response_variable) ~
patch_type + day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
Full model vs null model
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -2.4 0.04 ** moderate
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type * day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 62.3 80.5 -23.2 46.3 64
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.1 -0.5 0.0 0.7 1.9
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 2e-02 0.12
## day 1e-04 0.01 -1.00
## Residual 1e-01 0.32
## Number of obs: 72, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 1.834 0.130 25.655 14.1 1e-13 ***
## patch_typeSmall unconnected -0.203 0.253 28.212 -0.8 0.4
## day -0.068 0.008 16.552 -8.7 1e-07 ***
## patch_typeSmall unconnected:day -0.004 0.016 20.778 -0.3 0.8
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Su day
## ptch_typSmu -0.516
## day -0.928 0.479
## ptch_typSu: 0.469 -0.927 -0.505
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(full_model))
Reduced vs null model
model_stats_reduced = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_reduced %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -4.4 0.012 ** moderate
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type + day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 60.4 76.3 -23.2 46.4 65
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.1 -0.5 0.0 0.7 2.0
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 2e-02 0.13
## day 1e-04 0.01 -1.00
## Residual 1e-01 0.32
## Number of obs: 72, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 1.851 0.115 30.052 16 3e-16 ***
## patch_typeSmall unconnected -0.267 0.095 23.137 -3 0.01 **
## day -0.069 0.007 17.719 -10 8e-09 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Su
## ptch_typSmu -0.247
## day -0.907 0.033
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(reduced_model))
response_variable = "bioarea_mm2_per_ml"
We want to know whether the connection influenced this response variable. We first start from plotting how this response variable changed in connected and unconnected ecosystems throughout the experiment through its mean ± 95 confidence interval:
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
Following the initial inspection, we proceed to analyse differences among ecosystems. Our first step involves filtering the data to isolate the relevant data for analysis. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure that what filtered the data in the right way.
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
Then, given that we have gathered measurements from the same
ecosystem on multiple occasions, we can develop mixed effect models to
examine how the connection influenced this variable. To study the
effects of ecosystem connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
culture ID as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | culture ID)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | culture ID)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | culture ID)). If any of
the two model comparisons is significant, then ecosystem connection had
an effect.
full_model = lmer(
get(response_variable) ~
patch_type * day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
reduced_model = lmer(
get(response_variable) ~
patch_type + day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
Full model vs null model
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 0.1 0.142 none
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type * day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 111.5 130.9 -47.7 95.5 76
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.4 -0.7 0.0 0.6 4.2
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 8e-03 0.087
## day 1e-05 0.004 -1.00
## Residual 2e-01 0.426
## Number of obs: 84, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 2.218 0.157 16.456 14.1 1e-10 ***
## patch_typeSmall unconnected -0.421 0.295 16.456 -1.4 0.2
## day -0.087 0.008 31.270 -10.7 5e-12 ***
## patch_typeSmall unconnected:day 0.012 0.015 31.270 0.8 0.4
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Su day
## ptch_typSmu -0.535
## day -0.936 0.500
## ptch_typSu: 0.500 -0.936 -0.535
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(full_model))
Reduced vs null model
model_stats_reduced = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_reduced %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -1.3 0.071 * weak
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type + day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 110.1 127.2 -48.1 96.1 77
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.3 -0.7 -0.1 0.6 4.3
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 1e-02 0.119
## day 3e-05 0.005 -1.00
## Residual 2e-01 0.427
## Number of obs: 84, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 2.153 0.138 16.579 16 3e-11 ***
## patch_typeSmall unconnected -0.196 0.104 60.171 -2 0.06 .
## day -0.084 0.007 27.861 -12 1e-12 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Su
## ptch_typSmu -0.215
## day -0.915 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(reduced_model))
response_variable = "species_richness"
We want to know whether the connection influenced this response variable. We first start from plotting how this response variable changed in connected and unconnected ecosystems throughout the experiment through its mean ± 95 confidence interval:
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
Following the initial inspection, we proceed to analyse differences among ecosystems. Our first step involves filtering the data to isolate the relevant data for analysis. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure that what filtered the data in the right way.
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
Then, given that we have gathered measurements from the same
ecosystem on multiple occasions, we can develop mixed effect models to
examine how the connection influenced this variable. To study the
effects of ecosystem connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
culture ID as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | culture ID)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | culture ID)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | culture ID)). If any of
the two model comparisons is significant, then ecosystem connection had
an effect.
full_model = lmer(
get(response_variable) ~
patch_type * day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
reduced_model = lmer(
get(response_variable) ~
patch_type + day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
Full model vs null model
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -1.4 0.069 * weak
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type * day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 266.5 286.0 -125.3 250.5 76
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.5 -0.7 -0.1 0.5 2.6
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 0e+00 0e+00
## day 7e-14 3e-07 NaN
## Residual 1e+00 1e+00
## Number of obs: 84, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 6.18 0.39 84.00 15.8 <2e-16 ***
## patch_typeSmall unconnected -0.11 0.73 84.00 -0.1 0.9
## day -0.21 0.02 84.00 -10.3 <2e-16 ***
## patch_typeSmall unconnected:day -0.03 0.04 84.00 -0.7 0.5
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Su day
## ptch_typSmu -0.535
## day -0.935 0.500
## ptch_typSu: 0.500 -0.935 -0.535
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(full_model))
Reduced vs null model
model_stats_reduced = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_reduced %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -2.9 0.027 ** moderate
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type + day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 265.0 282.0 -125.5 251.0 77
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.5 -0.7 -0.1 0.4 2.8
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 0e+00 0e+00
## day 7e-15 8e-08 NaN
## Residual 1e+00 1e+00
## Number of obs: 84, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 6.32 0.34 84.00 19 <2e-16 ***
## patch_typeSmall unconnected -0.58 0.26 84.00 -2 0.03 *
## day -0.22 0.02 84.00 -13 <2e-16 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Su
## ptch_typSmu -0.219
## day -0.912 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(reduced_model))
response_variable = "evenness_pielou"
We want to know whether the connection influenced this response variable. We first start from plotting how this response variable changed in connected and unconnected ecosystems throughout the experiment through its mean ± 95 confidence interval:
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
## Warning in qt(conf.interval/2 + 0.5, datac$N - 1): NaNs produced
Following the initial inspection, we proceed to analyse differences among ecosystems. Our first step involves filtering the data to isolate the relevant data for analysis. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure that what filtered the data in the right way.
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
## Warning in qt(conf.interval/2 + 0.5, datac$N - 1): NaNs produced
Then, given that we have gathered measurements from the same
ecosystem on multiple occasions, we can develop mixed effect models to
examine how the connection influenced this variable. To study the
effects of ecosystem connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
culture ID as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | culture ID)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | culture ID)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | culture ID)). If any of
the two model comparisons is significant, then ecosystem connection had
an effect.
full_model = lmer(
get(response_variable) ~
patch_type * day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
reduced_model = lmer(
get(response_variable) ~
patch_type + day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
## Warning: Model failed to converge with 1 negative eigenvalue: -1.9e+00
Full model vs null model
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -8 0.003 *** strong
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type * day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 11.4 27.9 2.3 -4.6 50
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.36 -0.58 0.04 0.78 1.96
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 9e-03 0.095
## day 5e-05 0.007 -1.00
## Residual 5e-02 0.227
## Number of obs: 58, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 1.210 0.094 28.012 13 3e-13 ***
## patch_typeSmall unconnected 0.008 0.180 31.856 0 1.0
## day -0.030 0.006 15.767 -5 7e-05 ***
## patch_typeSmall unconnected:day -0.016 0.010 18.860 -2 0.1
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Su day
## ptch_typSmu -0.521
## day -0.928 0.483
## ptch_typSu: 0.497 -0.920 -0.535
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(full_model))
Reduced vs null model
model_stats_reduced = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_reduced %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -7.8 0.002 *** strong
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type + day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 11.6 26.0 1.2 -2.4 51
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.3 -0.7 -0.1 0.8 2.0
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 1e-02 0.122
## day 8e-05 0.009 -1.00
## Residual 5e-02 0.229
## Number of obs: 58, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 1.280 0.085 26.147 15 2e-14 ***
## patch_typeSmall unconnected -0.240 0.072 44.623 -3 0.002 **
## day -0.034 0.005 15.417 -7 5e-06 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Su
## ptch_typSmu -0.179
## day -0.909 -0.030
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(reduced_model))
response_variable = "median_body_area_µm2"
We want to know whether the connection influenced this response variable. We first start from plotting how this response variable changed in connected and unconnected ecosystems throughout the experiment through its mean ± 95 confidence interval:
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
## Warning in qt(conf.interval/2 + 0.5, datac$N - 1): NaNs produced
Following the initial inspection, we proceed to analyse differences among ecosystems. Our first step involves filtering the data to isolate the relevant data for analysis. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure that what filtered the data in the right way.
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
## Warning in qt(conf.interval/2 + 0.5, datac$N - 1): NaNs produced
Then, given that we have gathered measurements from the same
ecosystem on multiple occasions, we can develop mixed effect models to
examine how the connection influenced this variable. To study the
effects of ecosystem connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
culture ID as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | culture ID)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | culture ID)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | culture ID)). If any of
the two model comparisons is significant, then ecosystem connection had
an effect.
full_model = lmer(
get(response_variable) ~
patch_type * day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
reduced_model = lmer(
get(response_variable) ~
patch_type + day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
Full model vs null model
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 1.9 0.35 none
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type * day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 1233.5 1251.7 -608.8 1217.5 64
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.4 -0.5 0.2 0.6 1.9
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 1e-03 4e-02
## day 2e-06 1e-03 -1.00
## Residual 1e+06 1e+03
## Number of obs: 72, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 3335 439 72 7.6 9e-11 ***
## patch_typeSmall unconnected -1226 857 72 -1.4 0.2
## day -12 24 72 -0.5 0.6
## patch_typeSmall unconnected:day 71 49 72 1.4 0.2
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Su day
## ptch_typSmu -0.512
## day -0.936 0.479
## ptch_typSu: 0.460 -0.932 -0.492
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(full_model))
Reduced vs null model
model_stats_reduced = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_reduced %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 1.9 0.806 none
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type + day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 1233.5 1249.5 -609.8 1219.5 65
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.5 -0.5 0.2 0.7 1.9
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 7e-04 3e-02
## day 2e-06 1e-03 -1.00
## Residual 1e+06 1e+03
## Number of obs: 72, groups: culture_ID, 14
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 3044 395 72 7.7 5e-11 ***
## patch_typeSmall unconnected -77 314 72 -0.2 0.8
## day 5 21 72 0.3 0.8
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Su
## ptch_typSmu -0.258
## day -0.918 0.065
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(reduced_model))
for(patch_type_i in patch_type_i){
print(patch_type_i)
p = ds_patches %>%
filter(patch_type == patch_type_i) %>%
group_by(day) %>%
summarise(
Ble = mean(Ble_indiv_per_ml_dominance, na.rm = TRUE),
# Ble_se = sd(Ble_indiv_per_ml_dominance, na.rm = TRUE) / sqrt(n()),
# Ble_ci = qt(c(0.025, 0.975), df = n() - 1) * Ble_se,
Cep = mean(Cep_indiv_per_ml_dominance, na.rm = TRUE),
Col = mean(Col_indiv_per_ml_dominance, na.rm = TRUE),
Eug = mean(Eug_indiv_per_ml_dominance, na.rm = TRUE),
Eup = mean(Eup_indiv_per_ml_dominance, na.rm = TRUE),
Lox = mean(Lox_indiv_per_ml_dominance, na.rm = TRUE),
Pau = mean(Pau_indiv_per_ml_dominance, na.rm = TRUE),
Pca = mean(Pca_indiv_per_ml_dominance, na.rm = TRUE),
Spi = mean(Spi_indiv_per_ml_dominance, na.rm = TRUE),
Spi_te = mean(Spi_te_indiv_per_ml_dominance, na.rm = TRUE),
Tet = mean(Tet_indiv_per_ml_dominance, na.rm = TRUE)
) %>%
pivot_longer(Ble:Tet, names_to = "species", values_to = "species_indiv_per_ml") %>%
ggplot(aes(
x = day,
y = species_indiv_per_ml,
group = interaction(day, species),
color = species
)) +
geom_point(position = position_dodge(dodging),
size = treatment_points_size) +
geom_line(
aes(group = species),
position = position_dodge(dodging),
linewidth = treatment_lines_linewidth) +
labs(x = axis_names %>%
filter(variable == "day") %>%
pull(axis_name),
y = axis_names %>%
filter(variable == "dominance") %>%
pull(axis_name)) +
coord_cartesian(ylim = c(0, 100))
print(p)
}
## [1] "Small connected to small"
## [1] "Small unconnected"
patch_type_i = c("Large connected to small",
"Large unconnected")
response_variable = "shannon"
We want to know whether the connection influenced this response variable. We first start from plotting how this response variable changed in connected and unconnected ecosystems throughout the experiment through its mean ± 95 confidence interval:
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
Following the initial inspection, we proceed to analyse differences among ecosystems. Our first step involves filtering the data to isolate the relevant data for analysis. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure that what filtered the data in the right way.
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
Then, given that we have gathered measurements from the same
ecosystem on multiple occasions, we can develop mixed effect models to
examine how the connection influenced this variable. To study the
effects of ecosystem connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
culture ID as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | culture ID)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | culture ID)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | culture ID)). If any of
the two model comparisons is significant, then ecosystem connection had
an effect.
full_model = lmer(
get(response_variable) ~
patch_type * day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
reduced_model = lmer(
get(response_variable) ~
patch_type + day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
Full model vs null model
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 1 0.22 none
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type * day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 34.0 50.7 -9.0 18.0 52
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.93 -0.65 -0.06 0.77 1.72
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 2e-02 0.125
## day 6e-05 0.008 -1.00
## Residual 8e-02 0.276
## Number of obs: 60, groups: culture_ID, 10
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 1.224 0.153 16.644 8.0 4e-07 ***
## patch_typeLarge unconnected 0.257 0.216 16.644 1.2 0.3
## day 0.007 0.008 11.109 0.9 0.4
## patch_typeLarge unconnected:day -0.008 0.012 11.109 -0.7 0.5
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Lu day
## ptch_typLru -0.707
## day -0.943 0.667
## ptch_typLu: 0.667 -0.943 -0.707
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(full_model))
Reduced vs null model
model_stats_reduced = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_reduced %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -0.6 0.109 none
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type + day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 32.5 47.1 -9.2 18.5 53
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.8 -0.7 -0.1 0.8 1.8
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 2e-02 0.139
## day 8e-05 0.009 -1.00
## Residual 8e-02 0.276
## Number of obs: 60, groups: culture_ID, 10
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 1e+00 1e-01 2e+01 11.2 9e-10 ***
## patch_typeLarge unconnected 1e-01 7e-02 5e+01 1.6 0.1
## day 3e-03 6e-03 1e+01 0.6 0.6
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Lu
## ptch_typLru -0.312
## day -0.898 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(reduced_model))
response_variable = "bioarea_mm2_per_ml"
We want to know whether the connection influenced this response variable. We first start from plotting how this response variable changed in connected and unconnected ecosystems throughout the experiment through its mean ± 95 confidence interval:
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
Following the initial inspection, we proceed to analyse differences among ecosystems. Our first step involves filtering the data to isolate the relevant data for analysis. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure that what filtered the data in the right way.
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
Then, given that we have gathered measurements from the same
ecosystem on multiple occasions, we can develop mixed effect models to
examine how the connection influenced this variable. To study the
effects of ecosystem connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
culture ID as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | culture ID)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | culture ID)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | culture ID)). If any of
the two model comparisons is significant, then ecosystem connection had
an effect.
full_model = lmer(
get(response_variable) ~
patch_type * day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
reduced_model = lmer(
get(response_variable) ~
patch_type + day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = 'optimx',
optCtrl = list(method = 'nlminb')))
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
Full model vs null model
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -7.5 0.003 *** strong
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type * day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 168.5 185.3 -76.3 152.5 52
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -1.95 -0.70 -0.07 0.69 2.18
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 0.964 0.98
## day 0.002 0.05 -1.00
## Residual 0.656 0.81
## Number of obs: 60, groups: culture_ID, 10
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 4.76 0.61 10.04 7.9 1e-05 ***
## patch_typeLarge unconnected 1.18 0.86 10.04 1.4 0.2
## day -0.15 0.03 10.62 -5.0 5e-04 ***
## patch_typeLarge unconnected:day -0.01 0.04 10.62 -0.3 0.8
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Lu day
## ptch_typLru -0.707
## day -0.965 0.683
## ptch_typLu: 0.683 -0.965 -0.707
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(full_model))
Reduced vs null model
model_stats_reduced = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_reduced %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -9.5 0.001 *** strong
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type + day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "optimx", optCtrl = list(method = "nlminb"))
##
## AIC BIC logLik deviance df.resid
## 166.6 181.3 -76.3 152.6 53
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -1.91 -0.69 -0.07 0.70 2.17
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 0.979 0.99
## day 0.002 0.05 -1.00
## Residual 0.656 0.81
## Number of obs: 60, groups: culture_ID, 10
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 4.88 0.44 11.29 11 2e-07 ***
## patch_typeLarge unconnected 0.93 0.22 29.77 4 2e-04 ***
## day -0.15 0.02 10.60 -7 2e-05 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Lu
## ptch_typLru -0.251
## day -0.935 0.000
## optimizer (optimx) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(reduced_model))
response_variable = "species_richness"
We want to know whether the connection influenced this response variable. We first start from plotting how this response variable changed in connected and unconnected ecosystems throughout the experiment through its mean ± 95 confidence interval:
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
Following the initial inspection, we proceed to analyse differences among ecosystems. Our first step involves filtering the data to isolate the relevant data for analysis. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure that what filtered the data in the right way.
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
Then, given that we have gathered measurements from the same
ecosystem on multiple occasions, we can develop mixed effect models to
examine how the connection influenced this variable. To study the
effects of ecosystem connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
culture ID as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | culture ID)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | culture ID)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | culture ID)). If any of
the two model comparisons is significant, then ecosystem connection had
an effect.
full_model = lmer(
get(response_variable) ~
patch_type * day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
reduced_model = lmer(
get(response_variable) ~
patch_type + day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
Full model vs null model
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -5.6 0.008 *** strong
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type * day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 198.3 215.1 -91.2 182.3 52
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.39 -0.72 0.05 0.89 2.13
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 8e-12 3e-06
## day 1e-14 1e-07 -1.00
## Residual 1e+00 1e+00
## Number of obs: 60, groups: culture_ID, 10
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 6e+00 6e-01 6e+01 10.8 9e-16 ***
## patch_typeLarge unconnected 1e+00 8e-01 6e+01 1.2 0.2
## day -2e-02 3e-02 6e+01 -0.6 0.5
## patch_typeLarge unconnected:day -6e-16 4e-02 6e+01 0.0 1.0
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Lu day
## ptch_typLru -0.707
## day -0.935 0.661
## ptch_typLu: 0.661 -0.935 -0.707
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(full_model))
Reduced vs null model
model_stats_reduced = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_reduced %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -7.6 0.002 *** strong
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type + day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 196.3 211.0 -91.2 182.3 53
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.39 -0.72 0.05 0.89 2.13
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 8e-12 3e-06
## day 1e-14 1e-07 -1.00
## Residual 1e+00 1e+00
## Number of obs: 60, groups: culture_ID, 10
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 6.17 0.43 60.00 14.4 <2e-16 ***
## patch_typeLarge unconnected 1.00 0.29 60.00 3.5 9e-04 ***
## day -0.02 0.02 60.00 -0.9 0.4
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Lu
## ptch_typLru -0.334
## day -0.881 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(reduced_model))
response_variable = "evenness_pielou"
We want to know whether the connection influenced this response variable. We first start from plotting how this response variable changed in connected and unconnected ecosystems throughout the experiment through its mean ± 95 confidence interval:
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
Following the initial inspection, we proceed to analyse differences among ecosystems. Our first step involves filtering the data to isolate the relevant data for analysis. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure that what filtered the data in the right way.
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
Then, given that we have gathered measurements from the same
ecosystem on multiple occasions, we can develop mixed effect models to
examine how the connection influenced this variable. To study the
effects of ecosystem connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
culture ID as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | culture ID)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | culture ID)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | culture ID)). If any of
the two model comparisons is significant, then ecosystem connection had
an effect.
full_model = lmer(
get(response_variable) ~
patch_type * day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
reduced_model = lmer(
get(response_variable) ~
patch_type + day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
Full model vs null model
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 2.9 0.581 none
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type * day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -71.4 -54.7 43.7 -87.4 52
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.6 -0.6 0.3 0.7 1.5
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 3e-03 0.050
## day 1e-05 0.003 -1.00
## Residual 1e-02 0.115
## Number of obs: 60, groups: culture_ID, 10
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 0.673 0.063 18.728 10.7 2e-09 ***
## patch_typeLarge unconnected 0.084 0.089 18.728 0.9 0.4
## day 0.006 0.003 11.621 1.7 0.1
## patch_typeLarge unconnected:day -0.005 0.005 11.621 -1.1 0.3
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Lu day
## ptch_typLru -0.707
## day -0.942 0.666
## ptch_typLu: 0.666 -0.942 -0.707
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(full_model))
Reduced vs null model
model_stats_reduced = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_reduced %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 2 0.893 none
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type + day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -72.4 -57.7 43.2 -86.4 53
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.4 -0.6 0.2 0.8 1.5
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 4e-03 0.063
## day 2e-05 0.004 -1.00
## Residual 1e-02 0.115
## Number of obs: 60, groups: culture_ID, 10
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 0.717 0.049 19.377 14.7 5e-12 ***
## patch_typeLarge unconnected -0.004 0.030 44.928 -0.1 0.9
## day 0.003 0.003 10.997 1.2 0.2
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Lu
## ptch_typLru -0.309
## day -0.900 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(reduced_model))
response_variable = "median_body_area_µm2"
We want to know whether the connection influenced this response variable. We first start from plotting how this response variable changed in connected and unconnected ecosystems throughout the experiment through its mean ± 95 confidence interval:
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
Following the initial inspection, we proceed to analyse differences among ecosystems. Our first step involves filtering the data to isolate the relevant data for analysis. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure that what filtered the data in the right way.
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
Then, given that we have gathered measurements from the same
ecosystem on multiple occasions, we can develop mixed effect models to
examine how the connection influenced this variable. To study the
effects of ecosystem connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
culture ID as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | culture ID)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | culture ID)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | culture ID)). If any of
the two model comparisons is significant, then ecosystem connection had
an effect.
full_model = lmer(
get(response_variable) ~
patch_type * day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
reduced_model = lmer(
get(response_variable) ~
patch_type + day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
Full model vs null model
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 1.5 0.291 none
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type * day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 971.3 988.0 -477.6 955.3 52
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.4 -0.6 -0.1 0.5 2.6
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 3e+04 170
## day 1e+02 12 -1.00
## Residual 5e+05 688
## Number of obs: 60, groups: culture_ID, 10
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 3627.2 362.0 29.3 10.0 6e-11 ***
## patch_typeLarge unconnected -290.4 511.9 29.3 -0.6 0.6
## day -7.6 19.1 14.3 -0.4 0.7
## patch_typeLarge unconnected:day 0.3 27.0 14.3 0.0 1.0
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Lu day
## ptch_typLru -0.707
## day -0.937 0.662
## ptch_typLu: 0.662 -0.937 -0.707
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(full_model))
Reduced vs null model
model_stats_reduced = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_reduced %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -0.5 0.116 none
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type + day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 969.3 983.9 -477.6 955.3 53
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.4 -0.6 -0.1 0.5 2.6
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 3e+04 170
## day 1e+02 12 -1.00
## Residual 5e+05 688
## Number of obs: 60, groups: culture_ID, 10
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 3625 271 34 13.4 6e-15 ***
## patch_typeLarge unconnected -286 179 48 -1.6 0.1
## day -7 14 14 -0.5 0.6
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Lu
## ptch_typLru -0.331
## day -0.884 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(reduced_model))
for(patch_type_i in patch_type_i){
print(patch_type_i)
p = ds_patches %>%
filter(patch_type == patch_type_i) %>%
group_by(day) %>%
summarise(
Ble = mean(Ble_indiv_per_ml_dominance, na.rm = TRUE),
# Ble_se = sd(Ble_indiv_per_ml_dominance, na.rm = TRUE) / sqrt(n()),
# Ble_ci = qt(c(0.025, 0.975), df = n() - 1) * Ble_se,
Cep = mean(Cep_indiv_per_ml_dominance, na.rm = TRUE),
Col = mean(Col_indiv_per_ml_dominance, na.rm = TRUE),
Eug = mean(Eug_indiv_per_ml_dominance, na.rm = TRUE),
Eup = mean(Eup_indiv_per_ml_dominance, na.rm = TRUE),
Lox = mean(Lox_indiv_per_ml_dominance, na.rm = TRUE),
Pau = mean(Pau_indiv_per_ml_dominance, na.rm = TRUE),
Pca = mean(Pca_indiv_per_ml_dominance, na.rm = TRUE),
Spi = mean(Spi_indiv_per_ml_dominance, na.rm = TRUE),
Spi_te = mean(Spi_te_indiv_per_ml_dominance, na.rm = TRUE),
Tet = mean(Tet_indiv_per_ml_dominance, na.rm = TRUE)
) %>%
pivot_longer(Ble:Tet, names_to = "species", values_to = "species_indiv_per_ml") %>%
ggplot(aes(
x = day,
y = species_indiv_per_ml,
group = interaction(day, species),
color = species
)) +
geom_point(position = position_dodge(dodging),
size = treatment_points_size) +
geom_line(
aes(group = species),
position = position_dodge(dodging),
linewidth = treatment_lines_linewidth) +
labs(x = axis_names %>%
filter(variable == "day") %>%
pull(axis_name),
y = axis_names %>%
filter(variable == "dominance") %>%
pull(axis_name)) +
coord_cartesian(ylim = c(0, 100))
print(p)
}
## [1] "Large connected to small"
## [1] "Large unconnected"
patch_type_i = c("Large connected to small",
"Large connected to large")
response_variable = "shannon"
We want to know whether the connection influenced this response variable. We first start from plotting how this response variable changed in connected and unconnected ecosystems throughout the experiment through its mean ± 95 confidence interval:
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
Following the initial inspection, we proceed to analyse differences among ecosystems. Our first step involves filtering the data to isolate the relevant data for analysis. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure that what filtered the data in the right way.
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
Then, given that we have gathered measurements from the same
ecosystem on multiple occasions, we can develop mixed effect models to
examine how the connection influenced this variable. To study the
effects of ecosystem connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
culture ID as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | culture ID)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | culture ID)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | culture ID)). If any of
the two model comparisons is significant, then ecosystem connection had
an effect.
full_model = lmer(
get(response_variable) ~
patch_type * day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
reduced_model = lmer(
get(response_variable) ~
patch_type + day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
Full model vs null model
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 1.4 0.271 none
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type * day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 35.2 55.2 -9.6 19.2 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.15 -0.67 -0.04 0.76 2.58
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 1e-02 0.100
## day 3e-05 0.005 -1.00
## Residual 7e-02 0.267
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value
## (Intercept) 1.224 0.144 15.394 8.5
## patch_typeLarge connected to large 0.192 0.177 15.394 1.1
## day 0.007 0.007 16.266 1.0
## patch_typeLarge connected to large:day -0.006 0.009 16.266 -0.6
## Pr(>|t|)
## (Intercept) 3e-07 ***
## patch_typeLarge connected to large 0.3
## day 0.3
## patch_typeLarge connected to large:day 0.6
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) pt_Lctl day
## ptch_tyLctl -0.816
## day -0.941 0.768
## ptch_tLctl: 0.768 -0.941 -0.816
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(full_model))
Reduced vs null model
model_stats_reduced = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_reduced %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -0.2 0.134 none
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type + day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 33.5 51.0 -9.8 19.5 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -3.02 -0.72 -0.09 0.77 2.59
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 1e-02 0.111
## day 3e-05 0.006 -1.00
## Residual 7e-02 0.267
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 1e+00 9e-02 2e+01 13.8 2e-12
## patch_typeLarge connected to large 9e-02 6e-02 7e+01 1.5 0.1
## day 4e-03 4e-03 2e+01 0.8 0.4
##
## (Intercept) ***
## patch_typeLarge connected to large
## day
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) p_Lctl
## ptch_tyLctl -0.428
## day -0.852 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(reduced_model))
response_variable = "bioarea_mm2_per_ml"
We want to know whether the connection influenced this response variable. We first start from plotting how this response variable changed in connected and unconnected ecosystems throughout the experiment through its mean ± 95 confidence interval:
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
Following the initial inspection, we proceed to analyse differences among ecosystems. Our first step involves filtering the data to isolate the relevant data for analysis. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure that what filtered the data in the right way.
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
Then, given that we have gathered measurements from the same
ecosystem on multiple occasions, we can develop mixed effect models to
examine how the connection influenced this variable. To study the
effects of ecosystem connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
culture ID as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | culture ID)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | culture ID)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | culture ID)). If any of
the two model comparisons is significant, then ecosystem connection had
an effect.
full_model = lmer(
get(response_variable) ~
patch_type * day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
reduced_model = lmer(
get(response_variable) ~
patch_type + day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = 'optimx',
optCtrl = list(method = 'nlminb')))
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
Full model vs null model
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -0.9 0.085 * weak
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type * day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 254.5 274.5 -119.3 238.5 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.35 -0.53 -0.07 0.52 3.04
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 4e-01 0.61
## day 2e-04 0.02 -1.00
## Residual 7e-01 0.86
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value
## (Intercept) 4.76 0.52 17.88 9.2
## patch_typeLarge connected to large 1.03 0.64 17.88 1.6
## day -0.15 0.02 33.39 -6.1
## patch_typeLarge connected to large:day -0.02 0.03 33.39 -0.7
## Pr(>|t|)
## (Intercept) 4e-08 ***
## patch_typeLarge connected to large 0.1
## day 6e-07 ***
## patch_typeLarge connected to large:day 0.5
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) pt_Lctl day
## ptch_tyLctl -0.816
## day -0.914 0.747
## ptch_tLctl: 0.747 -0.914 -0.816
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(full_model))
Reduced vs null model
model_stats_reduced = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_reduced %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -2.4 0.036 ** moderate
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type + day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "optimx", optCtrl = list(method = "nlminb"))
##
## AIC BIC logLik deviance df.resid
## 253.1 270.6 -119.5 239.1 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.26 -0.57 -0.06 0.56 3.02
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 4e-01 0.63
## day 3e-04 0.02 -0.98
## Residual 7e-01 0.86
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 5.05 0.35 21.50 14 1e-12
## patch_typeLarge connected to large 0.59 0.26 15.00 2 0.04
## day -0.16 0.01 15.00 -12 8e-09
##
## (Intercept) ***
## patch_typeLarge connected to large *
## day ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) p_Lctl
## ptch_tyLctl -0.492
## day -0.798 0.000
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(reduced_model))
response_variable = "species_richness"
We want to know whether the connection influenced this response variable. We first start from plotting how this response variable changed in connected and unconnected ecosystems throughout the experiment through its mean ± 95 confidence interval:
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
Following the initial inspection, we proceed to analyse differences among ecosystems. Our first step involves filtering the data to isolate the relevant data for analysis. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure that what filtered the data in the right way.
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
Then, given that we have gathered measurements from the same
ecosystem on multiple occasions, we can develop mixed effect models to
examine how the connection influenced this variable. To study the
effects of ecosystem connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
culture ID as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | culture ID)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | culture ID)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | culture ID)). If any of
the two model comparisons is significant, then ecosystem connection had
an effect.
full_model = lmer(
get(response_variable) ~
patch_type * day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
reduced_model = lmer(
get(response_variable) ~
patch_type + day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
Full model vs null model
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -1.1 0.078 * weak
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type * day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 298.4 318.4 -141.2 282.4 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.27 -0.69 0.04 0.87 2.17
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 3e-02 0.18
## day 9e-05 0.01 -1.00
## Residual 1e+00 1.16
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value
## (Intercept) 6.17 0.60 16.52 10.2
## patch_typeLarge connected to large 1.28 0.74 16.52 1.7
## day -0.02 0.03 15.54 -0.6
## patch_typeLarge connected to large:day -0.04 0.04 15.54 -1.1
## Pr(>|t|)
## (Intercept) 1e-08 ***
## patch_typeLarge connected to large 0.1
## day 0.6
## patch_typeLarge connected to large:day 0.3
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) pt_Lctl day
## ptch_tyLctl -0.816
## day -0.936 0.764
## ptch_tLctl: 0.764 -0.936 -0.816
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(full_model))
Reduced vs null model
model_stats_reduced = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_reduced %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -2 0.046 ** moderate
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type + day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 297.6 315.1 -141.8 283.6 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.02 -0.71 0.05 0.82 2.22
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 2e-01 0.41
## day 5e-04 0.02 -1.00
## Residual 1e+00 1.16
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 6.67 0.40 24.11 17 1e-14
## patch_typeLarge connected to large 0.53 0.26 75.30 2 0.04
## day -0.05 0.02 15.32 -2 0.03
##
## (Intercept) ***
## patch_typeLarge connected to large *
## day *
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) p_Lctl
## ptch_tyLctl -0.433
## day -0.848 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(reduced_model))
response_variable = "evenness_pielou"
We want to know whether the connection influenced this response variable. We first start from plotting how this response variable changed in connected and unconnected ecosystems throughout the experiment through its mean ± 95 confidence interval:
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
Following the initial inspection, we proceed to analyse differences among ecosystems. Our first step involves filtering the data to isolate the relevant data for analysis. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure that what filtered the data in the right way.
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
Then, given that we have gathered measurements from the same
ecosystem on multiple occasions, we can develop mixed effect models to
examine how the connection influenced this variable. To study the
effects of ecosystem connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
culture ID as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | culture ID)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | culture ID)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | culture ID)). If any of
the two model comparisons is significant, then ecosystem connection had
an effect.
full_model = lmer(
get(response_variable) ~
patch_type * day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
reduced_model = lmer(
get(response_variable) ~
patch_type + day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
Full model vs null model
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 3.6 0.804 none
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type * day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -122.1 -102.1 69.1 -138.1 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.7 -0.6 0.1 0.8 1.8
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 0e+00 0e+00
## day 3e-17 5e-09 NaN
## Residual 1e-02 1e-01
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value
## (Intercept) 7e-01 6e-02 9e+01 11.6
## patch_typeLarge connected to large 2e-02 7e-02 9e+01 0.3
## day 6e-03 3e-03 9e+01 1.9
## patch_typeLarge connected to large:day -3e-04 4e-03 9e+01 -0.1
## Pr(>|t|)
## (Intercept) <2e-16 ***
## patch_typeLarge connected to large 0.76
## day 0.07 .
## patch_typeLarge connected to large:day 0.94
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) pt_Lctl day
## ptch_tyLctl -0.816
## day -0.935 0.763
## ptch_tLctl: 0.763 -0.935 -0.816
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(full_model))
Reduced vs null model
model_stats_reduced = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_reduced %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 1.6 0.512 none
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type + day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -124.1 -106.6 69.0 -138.1 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.7 -0.6 0.1 0.8 1.8
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 0e+00 0e+00
## day 3e-17 5e-09 NaN
## Residual 1e-02 1e-01
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 7e-01 4e-02 9e+01 18.1 <2e-16
## patch_typeLarge connected to large 2e-02 3e-02 9e+01 0.7 0.513
## day 5e-03 2e-03 9e+01 3.1 0.002
##
## (Intercept) ***
## patch_typeLarge connected to large
## day **
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) p_Lctl
## ptch_tyLctl -0.448
## day -0.836 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(reduced_model))
response_variable = "median_body_area_µm2"
We want to know whether the connection influenced this response variable. We first start from plotting how this response variable changed in connected and unconnected ecosystems throughout the experiment through its mean ± 95 confidence interval:
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
Following the initial inspection, we proceed to analyse differences among ecosystems. Our first step involves filtering the data to isolate the relevant data for analysis. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure that what filtered the data in the right way.
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
Then, given that we have gathered measurements from the same
ecosystem on multiple occasions, we can develop mixed effect models to
examine how the connection influenced this variable. To study the
effects of ecosystem connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
culture ID as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | culture ID)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | culture ID)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | culture ID)). If any of
the two model comparisons is significant, then ecosystem connection had
an effect.
full_model = lmer(
get(response_variable) ~
patch_type * day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
reduced_model = lmer(
get(response_variable) ~
patch_type + day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
Full model vs null model
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -7.5 0.003 *** strong
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type * day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 1408.9 1428.9 -696.5 1392.9 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.2 -0.5 -0.1 0.5 3.2
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 1e-04 1e-02
## day 5e-07 7e-04 -1.00
## Residual 3e+05 6e+02
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value
## (Intercept) 3627 286 90 12.7
## patch_typeLarge connected to large -735 350 90 -2.1
## day -8 15 90 -0.5
## patch_typeLarge connected to large:day 56 18 90 3.1
## Pr(>|t|)
## (Intercept) <2e-16 ***
## patch_typeLarge connected to large 0.038 *
## day 0.612
## patch_typeLarge connected to large:day 0.003 **
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) pt_Lctl day
## ptch_tyLctl -0.816
## day -0.935 0.763
## ptch_tLctl: 0.763 -0.935 -0.816
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(full_model))
Reduced vs null model
model_stats_reduced = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_reduced %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -0.9 0.087 * weak
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type + day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 1415.4 1432.9 -700.7 1401.4 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.6 -0.6 0.0 0.4 3.2
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 8e+04 291
## day 3e+02 17 -1.00
## Residual 3e+05 571
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 2969 204 29 14 9e-15
## patch_typeLarge connected to large 252 128 73 2 0.053
## day 30 10 15 3 0.009
##
## (Intercept) ***
## patch_typeLarge connected to large .
## day **
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) p_Lctl
## ptch_tyLctl -0.418
## day -0.859 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(reduced_model))
for(patch_type_i in patch_type_i){
print(patch_type_i)
p = ds_patches %>%
filter(patch_type == patch_type_i) %>%
group_by(day) %>%
summarise(
Ble = mean(Ble_indiv_per_ml_dominance, na.rm = TRUE),
# Ble_se = sd(Ble_indiv_per_ml_dominance, na.rm = TRUE) / sqrt(n()),
# Ble_ci = qt(c(0.025, 0.975), df = n() - 1) * Ble_se,
Cep = mean(Cep_indiv_per_ml_dominance, na.rm = TRUE),
Col = mean(Col_indiv_per_ml_dominance, na.rm = TRUE),
Eug = mean(Eug_indiv_per_ml_dominance, na.rm = TRUE),
Eup = mean(Eup_indiv_per_ml_dominance, na.rm = TRUE),
Lox = mean(Lox_indiv_per_ml_dominance, na.rm = TRUE),
Pau = mean(Pau_indiv_per_ml_dominance, na.rm = TRUE),
Pca = mean(Pca_indiv_per_ml_dominance, na.rm = TRUE),
Spi = mean(Spi_indiv_per_ml_dominance, na.rm = TRUE),
Spi_te = mean(Spi_te_indiv_per_ml_dominance, na.rm = TRUE),
Tet = mean(Tet_indiv_per_ml_dominance, na.rm = TRUE)
) %>%
pivot_longer(Ble:Tet, names_to = "species", values_to = "species_indiv_per_ml") %>%
ggplot(aes(
x = day,
y = species_indiv_per_ml,
group = interaction(day, species),
color = species
)) +
geom_point(position = position_dodge(dodging),
size = treatment_points_size) +
geom_line(
aes(group = species),
position = position_dodge(dodging),
linewidth = treatment_lines_linewidth) +
labs(x = axis_names %>%
filter(variable == "day") %>%
pull(axis_name),
y = axis_names %>%
filter(variable == "dominance") %>%
pull(axis_name)) +
coord_cartesian(ylim = c(0, 100))
print(p)
}
## [1] "Large connected to small"
## [1] "Large connected to large"
patch_type_i = c("Large connected to large",
"Large unconnected")
response_variable = "shannon"
We want to know whether the connection influenced this response variable. We first start from plotting how this response variable changed in connected and unconnected ecosystems throughout the experiment through its mean ± 95 confidence interval:
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
Following the initial inspection, we proceed to analyse differences among ecosystems. Our first step involves filtering the data to isolate the relevant data for analysis. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure that what filtered the data in the right way.
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
Then, given that we have gathered measurements from the same
ecosystem on multiple occasions, we can develop mixed effect models to
examine how the connection influenced this variable. To study the
effects of ecosystem connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
culture ID as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | culture ID)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | culture ID)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | culture ID)). If any of
the two model comparisons is significant, then ecosystem connection had
an effect.
full_model = lmer(
get(response_variable) ~
patch_type * day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
reduced_model = lmer(
get(response_variable) ~
patch_type + day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
Full model vs null model
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 3.8 0.887 none
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type * day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 21.2 41.2 -2.6 5.2 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.11 -0.72 -0.01 0.76 2.81
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 1e-02 0.119
## day 5e-05 0.007 -1.00
## Residual 6e-02 0.245
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 1.416 0.097 18.467 14.6 1e-11 ***
## patch_typeLarge unconnected 0.065 0.168 18.467 0.4 0.7
## day 0.002 0.005 15.168 0.3 0.7
## patch_typeLarge unconnected:day -0.002 0.009 15.168 -0.3 0.8
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Lu day
## ptch_typLru -0.577
## day -0.945 0.546
## ptch_typLu: 0.546 -0.945 -0.577
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(full_model))
Reduced vs null model
model_stats_reduced = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_reduced %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 1.8 0.682 none
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type + day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 19.3 36.8 -2.7 5.3 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.13 -0.75 0.01 0.76 2.80
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 1e-02 0.120
## day 5e-05 0.007 -1.00
## Residual 6e-02 0.245
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 1e+00 8e-02 2e+01 17.6 9e-14 ***
## patch_typeLarge unconnected 2e-02 5e-02 7e+01 0.4 0.7
## day 9e-04 4e-03 2e+01 0.2 0.8
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Lu
## ptch_typLru -0.225
## day -0.921 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(reduced_model))
response_variable = "bioarea_mm2_per_ml"
We want to know whether the connection influenced this response variable. We first start from plotting how this response variable changed in connected and unconnected ecosystems throughout the experiment through its mean ± 95 confidence interval:
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
Following the initial inspection, we proceed to analyse differences among ecosystems. Our first step involves filtering the data to isolate the relevant data for analysis. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure that what filtered the data in the right way.
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
Then, given that we have gathered measurements from the same
ecosystem on multiple occasions, we can develop mixed effect models to
examine how the connection influenced this variable. To study the
effects of ecosystem connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
culture ID as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | culture ID)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | culture ID)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | culture ID)). If any of
the two model comparisons is significant, then ecosystem connection had
an effect.
full_model = lmer(
get(response_variable) ~
patch_type * day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
reduced_model = lmer(
get(response_variable) ~
patch_type + day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
Full model vs null model
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 2.1 0.396 none
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type * day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 265.4 285.4 -124.7 249.4 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -1.9 -0.6 -0.1 0.5 2.8
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 6e-02 0.248
## day 1e-05 0.003 -1.00
## Residual 9e-01 0.950
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 5.79 0.35 31.23 16.3 <2e-16 ***
## patch_typeLarge unconnected 0.15 0.61 31.23 0.2 0.8
## day -0.17 0.02 68.52 -9.4 6e-14 ***
## patch_typeLarge unconnected:day 0.01 0.03 68.52 0.3 0.8
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Lu day
## ptch_typLru -0.577
## day -0.923 0.533
## ptch_typLu: 0.533 -0.923 -0.577
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(full_model))
Reduced vs null model
model_stats_reduced = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_reduced %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 0.2 0.185 none
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type + day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 263.5 281.0 -124.8 249.5 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -1.9 -0.6 -0.1 0.5 2.8
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 6e-02 0.249
## day 1e-05 0.003 -1.00
## Residual 9e-01 0.950
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 5.73 0.30 33.41 19 <2e-16 ***
## patch_typeLarge unconnected 0.32 0.24 15.08 1 0.2
## day -0.17 0.01 68.06 -11 <2e-16 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Lu
## ptch_typLru -0.263
## day -0.890 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(reduced_model))
response_variable = "species_richness"
We want to know whether the connection influenced this response variable. We first start from plotting how this response variable changed in connected and unconnected ecosystems throughout the experiment through its mean ± 95 confidence interval:
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
Following the initial inspection, we proceed to analyse differences among ecosystems. Our first step involves filtering the data to isolate the relevant data for analysis. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure that what filtered the data in the right way.
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
Then, given that we have gathered measurements from the same
ecosystem on multiple occasions, we can develop mixed effect models to
examine how the connection influenced this variable. To study the
effects of ecosystem connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
culture ID as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | culture ID)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | culture ID)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | culture ID)). If any of
the two model comparisons is significant, then ecosystem connection had
an effect.
full_model = lmer(
get(response_variable) ~
patch_type * day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
reduced_model = lmer(
get(response_variable) ~
patch_type + day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
Full model vs null model
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -0.6 0.098 * weak
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type * day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 290.7 310.7 -137.4 274.7 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.02 -0.72 0.01 0.89 2.26
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 0e+00 0e+00
## day 6e-13 8e-07 NaN
## Residual 1e+00 1e+00
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 7.45 0.41 90.00 18.4 <2e-16 ***
## patch_typeLarge unconnected -0.28 0.70 90.00 -0.4 0.692
## day -0.06 0.02 90.00 -2.9 0.005 **
## patch_typeLarge unconnected:day 0.04 0.04 90.00 1.1 0.259
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Lu day
## ptch_typLru -0.577
## day -0.935 0.540
## ptch_typLu: 0.540 -0.935 -0.577
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(full_model))
Reduced vs null model
model_stats_reduced = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_reduced %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -1.4 0.067 * weak
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type + day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 290.0 307.5 -138.0 276.0 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.05 -0.74 -0.09 0.77 2.27
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 0e+00 0e+00
## day 2e-14 2e-07 NaN
## Residual 1e+00 1e+00
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 7.20 0.34 90.00 21 <2e-16 ***
## patch_typeLarge unconnected 0.47 0.25 90.00 2 0.066 .
## day -0.05 0.02 90.00 -3 0.009 **
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Lu
## ptch_typLru -0.243
## day -0.907 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(reduced_model))
response_variable = "evenness_pielou"
We want to know whether the connection influenced this response variable. We first start from plotting how this response variable changed in connected and unconnected ecosystems throughout the experiment through its mean ± 95 confidence interval:
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
Following the initial inspection, we proceed to analyse differences among ecosystems. Our first step involves filtering the data to isolate the relevant data for analysis. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure that what filtered the data in the right way.
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
Then, given that we have gathered measurements from the same
ecosystem on multiple occasions, we can develop mixed effect models to
examine how the connection influenced this variable. To study the
effects of ecosystem connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
culture ID as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | culture ID)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | culture ID)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | culture ID)). If any of
the two model comparisons is significant, then ecosystem connection had
an effect.
full_model = lmer(
get(response_variable) ~
patch_type * day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
reduced_model = lmer(
get(response_variable) ~
patch_type + day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
Full model vs null model
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 1.3 0.255 none
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type * day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -136.1 -116.1 76.0 -152.1 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.5 -0.7 0.1 0.8 1.9
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 2e-04 1e-02
## day 8e-07 9e-04 -1.00
## Residual 1e-02 1e-01
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 0.695 0.038 34.956 18 <2e-16 ***
## patch_typeLarge unconnected 0.063 0.066 34.956 1 0.35
## day 0.005 0.002 17.958 3 0.02 *
## patch_typeLarge unconnected:day -0.005 0.003 17.958 -1 0.18
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Lu day
## ptch_typLru -0.577
## day -0.936 0.540
## ptch_typLu: 0.540 -0.936 -0.577
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(full_model))
Reduced vs null model
model_stats_reduced = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_reduced %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 1.1 0.345 none
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type + day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -136.2 -118.7 75.1 -150.2 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.5 -0.6 0.1 0.8 1.9
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 1e-03 0.037
## day 5e-06 0.002 -1.00
## Residual 1e-02 0.104
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 0.723 0.033 28.478 22 <2e-16 ***
## patch_typeLarge unconnected -0.023 0.023 73.905 -1 0.34
## day 0.004 0.002 16.350 2 0.04 *
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Lu
## ptch_typLru -0.234
## day -0.914 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(reduced_model))
response_variable = "median_body_area_µm2"
We want to know whether the connection influenced this response variable. We first start from plotting how this response variable changed in connected and unconnected ecosystems throughout the experiment through its mean ± 95 confidence interval:
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
Following the initial inspection, we proceed to analyse differences among ecosystems. Our first step involves filtering the data to isolate the relevant data for analysis. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure that what filtered the data in the right way.
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
Then, given that we have gathered measurements from the same
ecosystem on multiple occasions, we can develop mixed effect models to
examine how the connection influenced this variable. To study the
effects of ecosystem connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
culture ID as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | culture ID)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | culture ID)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | culture ID)). If any of
the two model comparisons is significant, then ecosystem connection had
an effect.
full_model = lmer(
get(response_variable) ~
patch_type * day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
reduced_model = lmer(
get(response_variable) ~
patch_type + day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
Full model vs null model
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -13.9 < 0.001 **** very strong
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type * day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 1416.8 1436.8 -700.4 1400.8 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.68 -0.56 -0.07 0.56 2.36
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 7e+04 256
## day 3e+02 16 -1.00
## Residual 3e+05 569
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 2892 222 23 13 4e-12 ***
## patch_typeLarge unconnected 445 385 23 1 0.26
## day 48 12 16 4 9e-04 ***
## patch_typeLarge unconnected:day -55 21 16 -3 0.02 *
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Lu day
## ptch_typLru -0.577
## day -0.943 0.544
## ptch_typLu: 0.544 -0.943 -0.577
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(full_model))
Reduced vs null model
model_stats_reduced = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_reduced %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -10 0.001 *** strong
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type + day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 1420.7 1438.2 -703.3 1406.7 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.68 -0.54 -0.05 0.59 2.39
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 3e+05 503
## day 9e+02 30 -1.00
## Residual 3e+05 570
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 3212 218 18 15 2e-11 ***
## patch_typeLarge unconnected -516 129 66 -4 2e-04 ***
## day 30 12 15 2 0.02 *
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Lu
## ptch_typLru -0.197
## day -0.940 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(reduced_model))
for(patch_type_i in patch_type_i){
print(patch_type_i)
p = ds_patches %>%
filter(patch_type == patch_type_i) %>%
group_by(day) %>%
summarise(
Ble = mean(Ble_indiv_per_ml_dominance, na.rm = TRUE),
# Ble_se = sd(Ble_indiv_per_ml_dominance, na.rm = TRUE) / sqrt(n()),
# Ble_ci = qt(c(0.025, 0.975), df = n() - 1) * Ble_se,
Cep = mean(Cep_indiv_per_ml_dominance, na.rm = TRUE),
Col = mean(Col_indiv_per_ml_dominance, na.rm = TRUE),
Eug = mean(Eug_indiv_per_ml_dominance, na.rm = TRUE),
Eup = mean(Eup_indiv_per_ml_dominance, na.rm = TRUE),
Lox = mean(Lox_indiv_per_ml_dominance, na.rm = TRUE),
Pau = mean(Pau_indiv_per_ml_dominance, na.rm = TRUE),
Pca = mean(Pca_indiv_per_ml_dominance, na.rm = TRUE),
Spi = mean(Spi_indiv_per_ml_dominance, na.rm = TRUE),
Spi_te = mean(Spi_te_indiv_per_ml_dominance, na.rm = TRUE),
Tet = mean(Tet_indiv_per_ml_dominance, na.rm = TRUE)
) %>%
pivot_longer(Ble:Tet, names_to = "species", values_to = "species_indiv_per_ml") %>%
ggplot(aes(
x = day,
y = species_indiv_per_ml,
group = interaction(day, species),
color = species
)) +
geom_point(position = position_dodge(dodging),
size = treatment_points_size) +
geom_line(
aes(group = species),
position = position_dodge(dodging),
linewidth = treatment_lines_linewidth) +
labs(x = axis_names %>%
filter(variable == "day") %>%
pull(axis_name),
y = axis_names %>%
filter(variable == "dominance") %>%
pull(axis_name)) +
coord_cartesian(ylim = c(0, 100))
print(p)
}
## [1] "Large connected to large"
## [1] "Large unconnected"
patch_type_i = c("Medium unconnected",
"Medium connected to medium")
response_variable = "shannon"
We want to know whether the connection influenced this response variable. We first start from plotting how this response variable changed in connected and unconnected ecosystems throughout the experiment through its mean ± 95 confidence interval:
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
Following the initial inspection, we proceed to analyse differences among ecosystems. Our first step involves filtering the data to isolate the relevant data for analysis. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure that what filtered the data in the right way.
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
Then, given that we have gathered measurements from the same
ecosystem on multiple occasions, we can develop mixed effect models to
examine how the connection influenced this variable. To study the
effects of ecosystem connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
culture ID as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | culture ID)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | culture ID)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | culture ID)). If any of
the two model comparisons is significant, then ecosystem connection had
an effect.
full_model = lmer(
get(response_variable) ~
patch_type * day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
reduced_model = lmer(
get(response_variable) ~
patch_type + day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
Full model vs null model
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 0.7 0.193 none
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type * day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 52.7 72.7 -18.3 36.7 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.25 -0.63 -0.08 0.87 2.60
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 3e-02 0.167
## day 6e-05 0.008 -1.00
## Residual 8e-02 0.291
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 1.418 0.118 15.033 12.0 4e-09
## patch_typeMedium unconnected -0.214 0.205 15.033 -1.0 0.3
## day -0.003 0.006 17.919 -0.5 0.7
## patch_typeMedium unconnected:day 0.005 0.010 17.919 0.5 0.6
##
## (Intercept) ***
## patch_typeMedium unconnected
## day
## patch_typeMedium unconnected:day
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Mu day
## ptch_typMdu -0.577
## day -0.946 0.546
## ptch_typMu: 0.546 -0.946 -0.577
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(full_model))
Reduced vs null model
model_stats_reduced = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_reduced %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -1 0.081 * weak
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type + day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 50.9 68.4 -18.5 36.9 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.21 -0.61 -0.05 0.84 2.58
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 3e-02 0.172
## day 7e-05 0.008 -1.00
## Residual 8e-02 0.291
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 1.386 0.100 16.344 13.9 2e-10 ***
## patch_typeMedium unconnected -0.118 0.066 60.800 -1.8 0.08 .
## day -0.001 0.005 17.656 -0.2 0.84
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Mu
## ptch_typMdu -0.221
## day -0.924 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(reduced_model))
response_variable = "bioarea_mm2_per_ml"
We want to know whether the connection influenced this response variable. We first start from plotting how this response variable changed in connected and unconnected ecosystems throughout the experiment through its mean ± 95 confidence interval:
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
Following the initial inspection, we proceed to analyse differences among ecosystems. Our first step involves filtering the data to isolate the relevant data for analysis. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure that what filtered the data in the right way.
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
Then, given that we have gathered measurements from the same
ecosystem on multiple occasions, we can develop mixed effect models to
examine how the connection influenced this variable. To study the
effects of ecosystem connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
culture ID as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | culture ID)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | culture ID)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | culture ID)). If any of
the two model comparisons is significant, then ecosystem connection had
an effect.
full_model = lmer(
get(response_variable) ~
patch_type * day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
reduced_model = lmer(
get(response_variable) ~
patch_type + day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
Full model vs null model
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 -1.6 0.062 * weak
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type * day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 217.6 237.6 -100.8 201.6 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -1.84 -0.75 -0.03 0.61 2.69
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 3e-01 0.59
## day 4e-04 0.02 -1.00
## Residual 5e-01 0.70
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 5.68 0.32 18.95 18 2e-13 ***
## patch_typeMedium unconnected -1.37 0.55 18.95 -2 0.02 *
## day -0.19 0.01 29.46 -13 1e-13 ***
## patch_typeMedium unconnected:day 0.05 0.03 29.46 2 0.04 *
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Mu day
## ptch_typMdu -0.577
## day -0.934 0.539
## ptch_typMu: 0.539 -0.934 -0.577
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(full_model))
Reduced vs null model
model_stats_reduced = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_reduced %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 0.6 0.231 none
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type + day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 219.8 237.3 -102.9 205.8 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -1.77 -0.76 0.01 0.48 2.73
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 5e-01 0.73
## day 7e-04 0.03 -1.00
## Residual 5e-01 0.71
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 5.31 0.29 16.44 18 2e-12 ***
## patch_typeMedium unconnected -0.27 0.19 23.37 -1 0.2
## day -0.17 0.01 20.93 -13 1e-11 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Mu
## ptch_typMdu -0.224
## day -0.922 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(reduced_model))
response_variable = "species_richness"
We want to know whether the connection influenced this response variable. We first start from plotting how this response variable changed in connected and unconnected ecosystems throughout the experiment through its mean ± 95 confidence interval:
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
Following the initial inspection, we proceed to analyse differences among ecosystems. Our first step involves filtering the data to isolate the relevant data for analysis. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure that what filtered the data in the right way.
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
Then, given that we have gathered measurements from the same
ecosystem on multiple occasions, we can develop mixed effect models to
examine how the connection influenced this variable. To study the
effects of ecosystem connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
culture ID as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | culture ID)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | culture ID)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | culture ID)). If any of
the two model comparisons is significant, then ecosystem connection had
an effect.
full_model = lmer(
get(response_variable) ~
patch_type * day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
reduced_model = lmer(
get(response_variable) ~
patch_type + day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
Full model vs null model
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 2.5 0.479 none
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type * day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 322.5 342.5 -153.2 306.5 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.68 -0.66 0.07 0.67 2.21
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 1.146 1.07
## day 0.002 0.05 -0.98
## Residual 1.601 1.27
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 7.711 0.572 15.000 13.5 9e-10
## patch_typeMedium unconnected -0.216 0.990 15.000 -0.2 0.830
## day -0.098 0.028 15.000 -3.5 0.003
## patch_typeMedium unconnected:day -0.009 0.049 15.000 -0.2 0.852
##
## (Intercept) ***
## patch_typeMedium unconnected
## day **
## patch_typeMedium unconnected:day
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Mu day
## ptch_typMdu -0.577
## day -0.946 0.546
## ptch_typMu: 0.546 -0.946 -0.577
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(full_model))
Reduced vs null model
model_stats_reduced = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_reduced %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 0.6 0.231 none
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type + day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 320.5 338.0 -153.3 306.5 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.68 -0.65 0.09 0.67 2.22
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 1.153 1.07
## day 0.002 0.05 -0.98
## Residual 1.601 1.27
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 7.77 0.48 16.38 16 2e-11 ***
## patch_typeMedium unconnected -0.39 0.32 15.00 -1 0.2
## day -0.10 0.02 15.00 -4 5e-04 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Mu
## ptch_typMdu -0.223
## day -0.922 0.000
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(reduced_model))
response_variable = "evenness_pielou"
We want to know whether the connection influenced this response variable. We first start from plotting how this response variable changed in connected and unconnected ecosystems throughout the experiment through its mean ± 95 confidence interval:
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
Following the initial inspection, we proceed to analyse differences among ecosystems. Our first step involves filtering the data to isolate the relevant data for analysis. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure that what filtered the data in the right way.
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
Then, given that we have gathered measurements from the same
ecosystem on multiple occasions, we can develop mixed effect models to
examine how the connection influenced this variable. To study the
effects of ecosystem connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
culture ID as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | culture ID)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | culture ID)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | culture ID)). If any of
the two model comparisons is significant, then ecosystem connection had
an effect.
full_model = lmer(
get(response_variable) ~
patch_type * day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
reduced_model = lmer(
get(response_variable) ~
patch_type + day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
Full model vs null model
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 0.1 0.144 none
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type * day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -130.3 -110.3 73.1 -146.3 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.30 -0.67 0.06 0.66 2.10
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 0e+00 0e+00
## day 4e-17 6e-09 NaN
## Residual 1e-02 1e-01
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 0.682 0.039 90.000 18 <2e-16
## patch_typeMedium unconnected -0.134 0.068 90.000 -2 0.050
## day 0.005 0.002 90.000 3 0.009
## patch_typeMedium unconnected:day 0.006 0.004 90.000 2 0.070
##
## (Intercept) ***
## patch_typeMedium unconnected *
## day **
## patch_typeMedium unconnected:day .
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Mu day
## ptch_typMdu -0.577
## day -0.935 0.540
## ptch_typMu: 0.540 -0.935 -0.577
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(full_model))
Reduced vs null model
model_stats_reduced = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_reduced %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 1.4 0.446 none
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type + day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## -129.0 -111.5 71.5 -143.0 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.4 -0.7 0.1 0.7 2.0
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 0e+00 0e+00
## day 2e-17 4e-09 NaN
## Residual 1e-02 1e-01
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 0.643 0.033 90.000 19.2 <2e-16 ***
## patch_typeMedium unconnected -0.019 0.024 90.000 -0.8 0.4
## day 0.008 0.002 90.000 4.5 2e-05 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Mu
## ptch_typMdu -0.243
## day -0.907 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(reduced_model))
response_variable = "median_body_area_µm2"
We want to know whether the connection influenced this response variable. We first start from plotting how this response variable changed in connected and unconnected ecosystems throughout the experiment through its mean ± 95 confidence interval:
plot.patches.points(ds_patches,
patch_type_i,
response_variable)
Following the initial inspection, we proceed to analyse differences among ecosystems. Our first step involves filtering the data to isolate the relevant data for analysis. Specifically, we exclude data points where the response variable couldn’t be computed, as well as time points preceding the initial disturbance and resource flow. Then we plot the data to make sure that what filtered the data in the right way.
filtered_data = ds_patches %>%
filter(time_point >= first_time_point_model,
time_point <= last_time_point_model,
patch_type %in% patch_type_i,
!is.na(!!sym(response_variable)))
plot.patches.points(filtered_data,
patch_type_i,
response_variable)
Then, given that we have gathered measurements from the same
ecosystem on multiple occasions, we can develop mixed effect models to
examine how the connection influenced this variable. To study the
effects of ecosystem connection we compare two models to a null model
using ANOVA: a full model and a reduced model. In all models, we treat
culture ID as having a random effect on how the slope and intercept of
the relationship between response variable and time, with the slope and
intercept being correlated (Bates et al.
2015). The full model contains the interaction of connection with
time
(Response variable ~ connection * day + (day | culture ID)),
the reduced model contains the connection but without the interaction
with time
(Response variable ~ connection + day + (day | culture ID)),
and the null model doesn’t contain the connection at all
(Response variable ~ day + (day | culture ID)). If any of
the two model comparisons is significant, then ecosystem connection had
an effect.
full_model = lmer(
get(response_variable) ~
patch_type * day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
reduced_model = lmer(
get(response_variable) ~
patch_type + day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
null_model = lmer(
get(response_variable) ~
day +
(day | culture_ID),
data = filtered_data,
REML = FALSE,
control = lmerControl(optimizer = "Nelder_Mead"))
Full model vs null model
model_stats_full = compute.model.stats(full_model,
null_model,
"mixed_model")
model_stats_full %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 3.7 0.862 none
print(summary(full_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type * day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 1446.3 1466.3 -715.2 1430.3 82
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.6 -0.4 0.1 0.5 3.9
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 6e+05 782
## day 3e+03 54 -1.00
## Residual 4e+05 611
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 3405 332 16 10.2 2e-08 ***
## patch_typeMedium unconnected -89 576 16 -0.2 0.9
## day 14 21 15 0.7 0.5
## patch_typeMedium unconnected:day 10 36 15 0.3 0.8
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Mu day
## ptch_typMdu -0.577
## day -0.966 0.558
## ptch_typMu: 0.558 -0.966 -0.577
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(full_model),
residuals = resid(full_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(full_model))
Reduced vs null model
model_stats_reduced = compute.model.stats(reduced_model,
null_model,
"mixed_model")
model_stats_reduced %>%
mutate(deltaAIC = round(deltaAIC, digits = 1),
p_value = round(p_value, digits = 3),
R2 = NULL,
evidence = "",
evidence = ifelse(p_value > 0.1,
"none",
evidence),
evidence = ifelse(p_value < 0.1,
"* weak",
evidence),
evidence = ifelse(p_value < 0.05,
"** moderate",
evidence),
evidence = ifelse(p_value < 0.01,
"*** strong",
evidence),
evidence = ifelse(p_value < 0.001,
"**** very strong",
evidence),
p_value = ifelse(p_value < 0.001,
"< 0.001",
p_value)) %>%
print()
## deltaAIC p_value evidence
## 1 1.8 0.642 none
print(summary(reduced_model), digits = 1)
## Linear mixed model fit by maximum likelihood . t-tests use Satterthwaite's
## method [lmerModLmerTest]
## Formula: get(response_variable) ~ patch_type + day + (day | culture_ID)
## Data: filtered_data
## Control: lmerControl(optimizer = "Nelder_Mead")
##
## AIC BIC logLik deviance df.resid
## 1444.4 1461.9 -715.2 1430.4 83
##
## Scaled residuals:
## Min 1Q Median 3Q Max
## -2.6 -0.5 0.1 0.5 3.9
##
## Random effects:
## Groups Name Variance Std.Dev. Corr
## culture_ID (Intercept) 6e+05 785
## day 3e+03 55 -1.00
## Residual 4e+05 611
## Number of obs: 90, groups: culture_ID, 15
##
## Fixed effects:
## Estimate Std. Error df t value Pr(>|t|)
## (Intercept) 3352 277 17 12.1 8e-10 ***
## patch_typeMedium unconnected 70 149 49 0.5 0.6
## day 17 17 15 1.0 0.3
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Correlation of Fixed Effects:
## (Intr) ptc_Mu
## ptch_typMdu -0.180
## day -0.950 0.000
## optimizer (Nelder_Mead) convergence code: 0 (OK)
## boundary (singular) fit: see help('isSingular')
#Create resid vs fitted
res_vs_fit = filtered_data %>%
mutate(predicted = fitted(reduced_model),
residuals = resid(reduced_model)) %>%
plot_ly(x = ~predicted,
y = ~residuals,
type = "scatter",
mode = "markers",
marker = list(size = 5, color = "#4C78A8"),
text = paste(" ID: ",
filtered_data$culture_ID,
"<br>",
"Day: ",
filtered_data$day,
"<br>",
"Patch Type: ",
filtered_data$patch_type,
"<br>",
"Biomass density: ",
round(filtered_data$bioarea_mm2_per_ml, digits = 2),
"<br>",
"Species richness: ",
filtered_data$species_richness,
"<br>"),
hoverinfo = "text") %>%
plotly::layout(title = "Residuals vs. Fitted Values",
xaxis = list(title = "Fitted Values"),
yaxis = list(title = "Residuals"))
res_vs_fit
qqnorm(resid(reduced_model))
for(patch_type_i in patch_type_i){
print(patch_type_i)
p = ds_patches %>%
filter(patch_type == patch_type_i) %>%
group_by(day) %>%
summarise(
Ble = mean(Ble_indiv_per_ml_dominance, na.rm = TRUE),
# Ble_se = sd(Ble_indiv_per_ml_dominance, na.rm = TRUE) / sqrt(n()),
# Ble_ci = qt(c(0.025, 0.975), df = n() - 1) * Ble_se,
Cep = mean(Cep_indiv_per_ml_dominance, na.rm = TRUE),
Col = mean(Col_indiv_per_ml_dominance, na.rm = TRUE),
Eug = mean(Eug_indiv_per_ml_dominance, na.rm = TRUE),
Eup = mean(Eup_indiv_per_ml_dominance, na.rm = TRUE),
Lox = mean(Lox_indiv_per_ml_dominance, na.rm = TRUE),
Pau = mean(Pau_indiv_per_ml_dominance, na.rm = TRUE),
Pca = mean(Pca_indiv_per_ml_dominance, na.rm = TRUE),
Spi = mean(Spi_indiv_per_ml_dominance, na.rm = TRUE),
Spi_te = mean(Spi_te_indiv_per_ml_dominance, na.rm = TRUE),
Tet = mean(Tet_indiv_per_ml_dominance, na.rm = TRUE)
) %>%
pivot_longer(Ble:Tet, names_to = "species", values_to = "species_indiv_per_ml") %>%
ggplot(aes(
x = day,
y = species_indiv_per_ml,
group = interaction(day, species),
color = species
)) +
geom_point(position = position_dodge(dodging),
size = treatment_points_size) +
geom_line(
aes(group = species),
position = position_dodge(dodging),
linewidth = treatment_lines_linewidth) +
labs(x = axis_names %>%
filter(variable == "day") %>%
pull(axis_name),
y = axis_names %>%
filter(variable == "dominance") %>%
pull(axis_name)) +
coord_cartesian(ylim = c(0, 100))
print(p)
}
## [1] "Medium unconnected"
## [1] "Medium connected to medium"
We want here to plot the final paper version of the biodiversity and productivity of meta-ecosystems. We need to plot it again instead of using the plots we used in the analysis because we want to change the size of the plot.
# Define meta-ecosystems you want to plot.
metaecosystem_type_i = c("Medium-Medium meta-ecosystem",
"Medium-Medium unconnected",
"Small-Large meta-ecosystem",
"Small-Large unconnected")
# Write function to plot a response variable. Afterwards you can use this function to plot alpha, beta, gamma diversity, and biomass.
plot.single.plot = function(response_variable){
ds_metaecosystems %>%
filter(metaecosystem_type %in% metaecosystem_type_i,
!is.na(!!sym(response_variable))) %>%
summarySE(measurevar = response_variable,
groupvars = c("day", "metaecosystem_type", "type", "connection")) %>%
ggplot(aes(x = day,
y = get(response_variable),
group = interaction(day, metaecosystem_type),
color = type,
linetype = connection)) +
geom_point(stat = "summary",
fun = "mean",
position = position_dodge(dodging),
size = treatment_points_size) +
geom_line(stat = "summary",
fun = "mean",
aes(group = metaecosystem_type),
position = position_dodge(dodging),
linewidth = treatment_lines_linewidth) +
geom_errorbar(aes(ymax = get(response_variable) + ci,
ymin = get(response_variable) - ci),
width = width_errorbar,
position = position_dodge(dodging)) +
labs(x = axis_names$axis_name[axis_names$variable == "day"],
y = axis_names$axis_name[axis_names$variable == response_variable],
color = "") +
scale_color_manual(values = c("#762a83",
"#1b7837")) +
geom_vline(xintercept = resource_flow_days,
linetype = resource_flow_line_type,
color = resource_flow_line_colour,
linewidth = resource_flow_line_width) +
theme_bw() +
theme(panel.grid.major = element_blank(),
panel.grid.minor = element_blank(),
legend.position = legend_position,
legend.key.width = unit(legend_width_cm, "cm")) +
guides(color = guide_legend(title = NULL,
nrow = 2),
linetype = guide_legend(title = NULL,
nrow = 2)) +
theme(plot.margin = unit(c(ggarrange_margin_left,
ggarrange_margin_right,
ggarrange_margin_bottom,
ggarrange_margin_left),
"cm")) +
geom_rect(xmin = grey_background_xmin,
xmax = grey_background_xmax,
ymin = grey_background_ymin,
ymax = grey_background_ymax,
fill = grey_background_fill,
alpha = grey_background_alpha,
color = grey_background_color)
}
# Combine plots of alpha, beta, gamma biodiversity and biomass.
p_combined = ggarrange(plot.single.plot("mean_shannon") +
rremove("xlab") +
theme(axis.text.x = element_blank(),
axis.ticks.x = element_blank()) +
font("legend.text", size = paper_labels_size) +
font("ylab", size = paper_labels_size),
plot.single.plot("bray_curtis") +
rremove("xlab") +
theme(axis.text.x = element_blank(),
axis.ticks.x = element_blank()) +
font("legend.text",
size = paper_labels_size) +
font("ylab",
size = paper_labels_size),
plot.single.plot("metaecosystem_richness") +
rremove("xlab") +
theme(axis.text.x = element_blank(),
axis.ticks.x = element_blank()) +
font("legend.text",
size = paper_labels_size) +
font("ylab",
size = paper_labels_size),
plot.single.plot("total_metaecosystem_bioarea_mm2") +
font("legend.text",
size = paper_labels_size) +
font("xlab",
size = paper_labels_size) +
font("ylab",
size = paper_labels_size) +
scale_x_continuous(breaks = unique(ds_metaecosystems$day)),
heights = c(0.8, 0.8, 0.8, 1),
nrow = 4,
common.legend = TRUE,
align = "v",
labels = c("(a)", "(b)", "(c)", "(d)"),
label.x = 0.1,
label.y = 0.8) %>%
print()
We want here to plot the final paper version of the biodiversity and productivity of the small and large ecosystems. We need to plot it again instead of using the plots we used in the analysis because we want to have the underscores in the legend. We don’t use underscores in the analysis because we can’t easily input them from a level name vector.
# Define ecosystems you want to plot.
patch_type_input = c("Small connected to large",
"Small connected to small",
"Small unconnected",
"Large connected to small",
"Large connected to large",
"Large unconnected")
# Construct function to plot how the response variable (biomass or Shannon) of small and large ecosystems changes across time.
plot.single.plot = function(response_variable){
ds_patches %>%
filter(patch_type %in% patch_type_input,
!is.na(!!sym(response_variable))) %>%
summarySE(measurevar = response_variable,
groupvars = c("day", "time_point", "patch_type", "patch_size", "connection")) %>%
ggplot(aes(x = day,
y = get(response_variable),
group = interaction(day, patch_type),
color = patch_type,
linetype = patch_type)) +
geom_point(stat = "summary",
fun = "mean",
position = position_dodge(dodging),
size = treatment_points_size) +
geom_line(stat = "summary",
fun = "mean",
aes(group = patch_type),
position = position_dodge(dodging),
linewidth = treatment_lines_linewidth) +
geom_errorbar(aes(ymax = get(response_variable) + ci,
ymin = get(response_variable) - ci),
width = width_errorbar,
position = position_dodge(dodging)) +
labs(x = axis_names$axis_name[axis_names$variable == "day"],
y = axis_names$axis_name[axis_names$variable == response_variable],
color = "") +
scale_color_manual(values = c("#993404",
"#993404",
"#993404",
"#3182bd",
"#3182bd",
"#3182bd"),
label = expression(S[L],
S[S],
S,
L[S],
L[L],
L)) +
scale_linetype_manual(values = c("solid",
"dashed",
"dotted",
"solid",
"dashed",
"dotted"),
label = expression(S[L],
S[S],
S,
L[S],
L[L],
L)) +
geom_vline(xintercept = resource_flow_days,
linetype = resource_flow_line_type,
color = resource_flow_line_colour,
linewidth = resource_flow_line_width) +
geom_hline(yintercept = 0,
color = zero_line_colour,
linetype = zero_line_line_type,
linewidth = zero_line_line_width) +
theme_bw() +
theme(panel.grid.major = element_blank(),
panel.grid.minor = element_blank(),
legend.position = legend_position,
legend.key.width = unit(legend_width_cm, "cm")) +
guides(color = guide_legend(title = NULL,
nrow = 3),
linetype = guide_legend(title = NULL,
nrow = 3)) +
geom_rect(xmin = grey_background_xmin,
xmax = grey_background_xmax,
ymin = grey_background_ymin,
ymax = grey_background_ymax,
fill = grey_background_fill,
alpha = grey_background_alpha,
color = grey_background_color)
}
# Combine plots
p_combined = ggarrange(plot.single.plot("shannon") +
rremove("xlab") +
theme(axis.text.x = element_blank(),
axis.ticks.x = element_blank()) +
font("legend.text",
size = paper_labels_size) +
font("ylab",
size = paper_labels_size),
plot.single.plot("bioarea_mm2_per_ml") +
font("legend.text",
size = paper_labels_size) +
font("xlab",
size = paper_labels_size) +
font("ylab",
size = paper_labels_size) +
scale_x_continuous(breaks = unique(ds_patches$day)),
heights = c(0.8, 0.8, 1),
nrow = 2,
align = "v",
labels = c("(a)", "(b)"),
label.x = 0.1,
label.y = 0.8,
common.legend = TRUE) %>%
print()
## Warning in qt(conf.interval/2 + 0.5, datac$N - 1): NaNs produced
We want here to plot the final paper version of the biodiversity and productivity of the medium ecosystems. We need to plot it again instead of using the plots we used in the analysis because we want to have the underscores in the legend. We don’t use underscores in the analysis because we can’t easily input them from a level name vector.
# Define ecosystems you want to plot.
patch_type_input = c("Medium connected to medium",
"Medium unconnected")
# Construct function to plot how the response variable (biomass or Shannon) of small and large ecosystems changes across time.
plot.single.plot = function(response_variable){
ds_patches %>%
filter(patch_type %in% patch_type_input,
!is.na(!!sym(response_variable))) %>%
summarySE(measurevar = response_variable,
groupvars = c("day", "time_point", "patch_type", "patch_size", "connection")) %>%
ggplot(aes(x = day,
y = get(response_variable),
group = interaction(day, patch_type),
color = patch_type,
linetype = patch_type)) +
geom_point(stat = "summary",
fun = "mean",
position = position_dodge(dodging),
size = treatment_points_size) +
geom_line(stat = "summary",
fun = "mean",
aes(group = patch_type),
position = position_dodge(dodging),
linewidth = treatment_lines_linewidth) +
geom_errorbar(aes(ymax = get(response_variable) + ci,
ymin = get(response_variable) - ci),
width = width_errorbar,
position = position_dodge(dodging)) +
labs(x = axis_names$axis_name[axis_names$variable == "day"],
y = axis_names$axis_name[axis_names$variable == response_variable],
color = "") +
scale_color_manual(values = c("#d95f0e",
"#d95f0e"),
label = expression(M[M],
M)) +
scale_linetype_manual(values = c("dashed",
"dotted"),
label = expression(M[M],
M)) +
geom_vline(xintercept = resource_flow_days,
linetype = resource_flow_line_type,
color = resource_flow_line_colour,
linewidth = resource_flow_line_width) +
geom_hline(yintercept = 0,
color = zero_line_colour,
linetype = zero_line_line_type,
linewidth = zero_line_line_width) +
theme_bw() +
theme(panel.grid.major = element_blank(),
panel.grid.minor = element_blank(),
legend.position = legend_position,
legend.key.width = unit(legend_width_cm, "cm")) +
guides(color = guide_legend(title = NULL,
nrow = 3),
linetype = guide_legend(title = NULL,
nrow = 3)) +
geom_rect(xmin = grey_background_xmin,
xmax = grey_background_xmax,
ymin = grey_background_ymin,
ymax = grey_background_ymax,
fill = grey_background_fill,
alpha = grey_background_alpha,
color = grey_background_color)
}
# Combine plots
p_combined = ggarrange(plot.single.plot("shannon") +
rremove("xlab") +
theme(axis.text.x = element_blank(),
axis.ticks.x = element_blank()) +
font("legend.text",
size = paper_labels_size) +
font("ylab",
size = paper_labels_size),
plot.single.plot("bioarea_mm2_per_ml") +
font("legend.text",
size = paper_labels_size) +
font("xlab",
size = paper_labels_size) +
font("ylab",
size = paper_labels_size) +
scale_x_continuous(breaks = unique(ds_patches$day)),
heights = c(0.8, 0.8, 1),
nrow = 2,
align = "v",
labels = c("(a)", "(b)"),
label.x = 0.1,
label.y = 0.8,
common.legend = TRUE) %>%
print()
We want here to plot the final paper version of the ratio between autotrophic and heterotrophic biomass in small, medium, and large unconnected ecosystems. We need to plot it again instead of using the plots we used in the analysis because we want to have S, M, and L in the legend.
# Define ecosystems and response variable you want to plot.
patch_type_input = c("S",
"M",
"L")
response_variable = "auto_hetero_ratio"
# Construct plot
p = ds_patches %>%
# Manipulate
mutate(patch_type = case_when(patch_type == "Small unconnected" ~ "S",
patch_type == "Medium unconnected" ~ "M",
patch_type == "Large unconnected" ~ "L")) %>%
filter(patch_type %in% patch_type_input,
!is.na(!!sym(response_variable))) %>%
summarySE(measurevar = response_variable,
groupvars = c("day", "patch_type", "patch_size", "connection")) %>%
# Create plot
ggplot(aes(x = day,
y = get(response_variable),
group = interaction(day, patch_type),
color = patch_type)) +
# Points
geom_point(stat = "summary",
fun = "mean",
position = position_dodge(dodging),
size = treatment_points_size) +
geom_errorbar(aes(ymax = get(response_variable) + ci,
ymin = get(response_variable) - ci),
width = width_errorbar,
position = position_dodge(dodging)) +
# Lines
geom_line(stat = "summary",
fun = "mean",
aes(group = patch_type),
position = position_dodge(dodging),
linewidth = treatment_lines_linewidth) +
# Axes and legend
labs(x = axis_names$axis_name[axis_names$variable == "day"],
y = axis_names$axis_name[axis_names$variable == response_variable],
color = "") +
scale_x_continuous(breaks = unique(ds_patches$day)) +
guides(color = guide_legend(title = NULL,
nrow = 1),
linetype = guide_legend(title = NULL,
nrow = 1)) +
scale_color_manual(values = c("#000000",
"#737373",
"#bdbdbd")) +
# Extra graphic elements
theme_bw() +
theme(panel.grid.major = element_blank(),
panel.grid.minor = element_blank(),
legend.position = legend_position,
legend.key.width = unit(legend_width_cm, "cm"),
axis.title.x = element_text(size = paper_labels_size),
axis.title.y = element_text(size = paper_labels_size),
legend.text = element_text(size = paper_labels_size)) +
geom_rect(xmin = grey_background_xmin,
xmax = grey_background_xmax,
ymin = grey_background_ymin,
ymax = grey_background_ymax,
fill = grey_background_fill,
alpha = grey_background_alpha,
color = grey_background_color) +
geom_hline(yintercept = 0,
color = zero_line_colour,
linetype = zero_line_line_type,
linewidth = zero_line_line_width) +
geom_vline(xintercept = resource_flow_days,
linetype = resource_flow_line_type,
color = resource_flow_line_colour,
linewidth = resource_flow_line_width)
## Warning in qt(conf.interval/2 + 0.5, datac$N - 1): NaNs produced
p
During the experiment we noticed that microwaving ecosystem sub-samples for three minutes to create disturbance caused the evaporation of the ecosystems. However, we don’t know exactly how much evaporated and how much we should refill the ecosystems to bring them back to the original volume. Therefore, here I quantify the evaporation of 5.75 and 6.75 ml of deionised water, which represent low and high disturbance, respectively. For each disturbance level, I microwaved 15 tubes of that disturbance level for three minutes and measured their evaporation. To do so, I weighed the water before the microwaving (weigh tubes, add water, reweigh tubes) and after it (weigh Becker, pour water into it, reweigh Becker).
evaporation.test = read.csv(here("2_data", "evaporation_test","evaporation_test_right.csv"), header = TRUE)
evaporation.test %>%
ggplot(aes (x = as.character(water_pipetted),
y = weight_water_evaporated,
group = interaction(water_pipetted, as.character(rack)),
fill = as.character(rack))) +
geom_boxplot(width = boxplot_width) +
labs(x = "Water volume (ml)" ,
y = "Evaporation (g)",
fill = "Rack replicate")
Furthermore, during the experiment we noticed that microwaving five 6.75 ml ecosystems sub-samples with ten empty tubes for three minutes to create disturbance caused the evaporation of the sub-samples more than if they were with other sub-samples. However, we don’t know exactly how much evaporated and how much we should refill the ecosystems to bring them back to the original volume. Therefore, here I quantify the evaporation of five 6.75 ml sub-samples with ten empty or filled falcon tubes. The weighting was conducted as above.
evaporation.test = read.csv(here("2_data", "evaporation_test", "evaporation_test_fill_nofill.csv"), header = TRUE)
evaporation.test %>%
ggplot(aes (x = all_tubes_water,
y = weight_water_evaporated)) +
geom_boxplot(width = boxplot_width) +
labs(x = "Water in the other 10 tubes" ,
y = "Evaporation (g)")
During the experiment we measured the evaporation rates of ecosystems to refill them after each disturbance. However, it might be that there was a systematic bias in the evaporation of different disturbance levels, ecosystem sizes and at different times. There might be for example a difference among the exchanges 2,3 (three minutes microwaving of 15 tubes) and the exchanges 4,5,6 (one minute microwaving of four tubes). To make sure that such a systematic bias did not exist, we plot how much evaporation occured in different treatments.
#Columns: exchange & evaporation
ds_for_evaporation = gather(ds_for_evaporation,
key = exchange,
value = evaporation,
water_add_after_t2:water_add_after_t6)
ds_for_evaporation[ds_for_evaporation == "water_add_after_t2"] = "2"
ds_for_evaporation[ds_for_evaporation == "water_add_after_t3"] = "3"
ds_for_evaporation[ds_for_evaporation == "water_add_after_t4"] = "4"
ds_for_evaporation[ds_for_evaporation == "water_add_after_t5"] = "5"
ds_for_evaporation[ds_for_evaporation == "water_add_after_t6"] = "6"
ds_for_evaporation$evaporation[ds_for_evaporation$exchange == 2] = ds_for_evaporation$evaporation[ds_for_evaporation$exchange == 2] / 2 #This is because exchange contained the topping up of two exchanges
ds_for_evaporation$evaporation[ds_for_evaporation$exchange == 2] = ds_for_evaporation$evaporation[ds_for_evaporation$exchange == 2] + 2 #We need to add 2 ml to the evaporation that happened at the exchange events 1 and 2. This is because we already added 1 ml of water at exchange 1 and 1 ml of water at exchange 2.
#Column: nr_of_tubes_in_rack
ds_for_evaporation$nr_of_tubes_in_rack[ds_for_evaporation$exchange == 1] = 15
ds_for_evaporation$nr_of_tubes_in_rack[ds_for_evaporation$exchange == 2] = 15
ds_for_evaporation$nr_of_tubes_in_rack[ds_for_evaporation$exchange == 3] = 15
ds_for_evaporation$nr_of_tubes_in_rack[ds_for_evaporation$exchange == 4] = 4
ds_for_evaporation$nr_of_tubes_in_rack[ds_for_evaporation$exchange == 5] = 4
ds_for_evaporation$nr_of_tubes_in_rack[ds_for_evaporation$exchange == 6] = 4
ds_for_evaporation %>%
filter(disturbance == disturbance) %>%
ggplot(aes(x = as.character(nr_of_tubes_in_rack),
y = evaporation)) +
geom_boxplot(width = boxplot_width) +
labs(x = "Number of tubes in rack",
y = "Evaporation (ml)")
ds_for_evaporation %>%
filter(disturbance == disturbance) %>%
ggplot(aes(x = as.character(patch_size),
y = evaporation)) +
geom_boxplot(width = boxplot_width) +
labs(x = "Patch size",
y = "Evaporation (ml)")
ds_for_evaporation %>%
filter(disturbance == disturbance) %>%
ggplot(aes(x = as.character(day),
y = evaporation)) +
geom_boxplot(width = boxplot_width) +
labs(x = "Day",
y = "Evaporation (ml)")
ds_for_evaporation %>%
filter(disturbance == disturbance) %>%
ggplot(aes(x = disturbance,
y = evaporation)) +
geom_boxplot(width = boxplot_width) +
labs(x = "Disturbance",
y = "Evaporation (ml)")
To analyse the videos I took of the ecosystems, I used the package BEMOVI. For this, I had to use the powerful computer. Below is the code utilised for video analysis on the powerful computer.
rm(list = ls())
setwd("/media/mendel-himself/ID_061_Ema2/PatchSizePilot/training")
# load package
# library(devtools)
# install_github("femoerman/bemovi", ref="master")
library(bemovi)
library(parallel)
library(doParallel)
library(foreach)
#Define memory to be allocated
memory.alloc <- 240000 #-needs_to_be_specified
memory.per.identifier <- 40000 #-needs_to_be_specified
memory.per.linker <- 5000 #-needs_to_be_specified
memory.per.overlay <- 60000 #-needs_to_be_specified
# UNIX
# set paths to tools folder and particle linker
tools.path <-
"/home/mendel-himself/bemovi_tools/" #-needs_to_be_specified
to.particlelinker <- tools.path
# directories and file names
to.data <- paste(getwd(), "/", sep = "")
video.description.folder <- "0_video_description/"
video.description.file <- "video_description.txt"
raw.video.folder <- "1_raw/"
raw.avi.folder <- "1a_raw_avi/"
metadata.folder <- "1b_raw_meta/"
particle.data.folder <- "2_particle_data/"
trajectory.data.folder <- "3_trajectory_data/"
temp.overlay.folder <- "4a_temp_overlays/"
overlay.folder <- "4_overlays/"
merged.data.folder <- "5_merged_data/"
ijmacs.folder <- "ijmacs/"
######################################################################
# VIDEO PARAMETERS
# video frame rate (in frames per second)
fps <- 25 #-needs_to_be_specified
# length of video (in frames)
total_frames <- 125 #-needs_to_be_specified
#Dimensions of the videos in pixels
width = 2048 #-needs_to_be_specified
height = 2048 #-needs_to_be_specified
# measured volume (in microliter) #-needs_to_be_specified
measured_volume <-
34.4 # for Leica M205 C with 1.6 fold magnification, sample height 0.5 mm and Hamamatsu Orca Flash 4
#measured_volume <- 14.9 # for Nikon SMZ1500 with 2 fold magnification, sample height 0.5 mm and Canon 5D Mark III
# size of a pixel (in micrometer) #-needs_to_be_specified
pixel_to_scale <-
4.05 # for Leica M205 C with 1.6 fold magnification, sample height 0.5 mm and Hamamatsu Orca Flash 4
#pixel_to_scale <- 3.79 # for Nikon SMZ1500 with 2 fold magnification, sample height 0.5 mm and Canon 5D Mark III
# specify video file format (one of "avi","cxd","mov","tiff")
# bemovi only works with avi and cxd. other formats are reformated to avi below
video.format <- "cxd" #-needs_to_be_specified
# setup
difference.lag <- 10
thresholds <- c(13, 255) # don't change the second value
# thresholds <- c(50,255)
# MORE PARAMETERS (USUALLY NOT CHANGED)
######################################################################
# FILTERING PARAMETERS
# optimized for Perfex Pro 10 stereomicrocope with Perfex SC38800 (IDS UI-3880LE-M-GL) camera
# tested stereomicroscopes: Perfex Pro 10, Nikon SMZ1500, Leica M205 C
# tested cameras: Perfex SC38800, Canon 5D Mark III, Hamamatsu Orca Flash 4
# tested species: Tet, Col, Pau, Pca, Eug, Chi, Ble, Ceph, Lox, Spi
# min and max size: area in pixels
particle_min_size <- 10
particle_max_size <- 1000
# number of adjacent frames to be considered for linking particles
trajectory_link_range <- 3
# maximum distance a particle can move between two frames
trajectory_displacement <- 16
# these values are in the units defined by the parameters above: fps (seconds), measured_volume (microliters) and pixel_to_scale (micometers)
filter_min_net_disp <- 25
filter_min_duration <- 1
filter_detection_freq <- 0.1
filter_median_step_length <- 3
######################################################################
# VIDEO ANALYSIS
#Check if all tools are installed, and if not install them
check_tools_folder(tools.path)
#Ensure computer has permission to run bftools
system(paste0("chmod a+x ", tools.path, "bftools/bf.sh"))
system(paste0("chmod a+x ", tools.path, "bftools/bfconvert"))
system(paste0("chmod a+x ", tools.path, "bftools/showinf"))
# Convert files to compressed avi (takes approx. 2.25 minutes per video)
convert_to_avi(
to.data,
raw.video.folder,
raw.avi.folder,
metadata.folder,
tools.path,
fps,
video.format
)
# TESTING
# check file format and naming
# check_video_file_names(to.data,raw.avi.folder,video.description.folder,video.description.file)
# check whether the thresholds make sense (set "dark backgroud" and "red")
#check_threshold_values(to.data, raw.avi.folder, ijmacs.folder, 2, difference.lag, thresholds, tools.path, memory.alloc)
# identify particles
locate_and_measure_particles(
to.data,
raw.avi.folder,
particle.data.folder,
difference.lag,
min_size = particle_min_size,
max_size = particle_max_size,
thresholds = thresholds,
tools.path,
memory = memory.alloc,
memory.per.identifier = memory.per.identifier,
max.cores = detectCores() - 1
)
# link the particles
link_particles(
to.data,
particle.data.folder,
trajectory.data.folder,
linkrange = trajectory_link_range,
disp = trajectory_displacement,
start_vid = 1,
memory = memory.alloc,
memory_per_linkerProcess = memory.per.linker,
raw.avi.folder,
max.cores = detectCores() - 1,
max_time = 1
)
# merge info from description file and data
merge_data(
to.data,
particle.data.folder,
trajectory.data.folder,
video.description.folder,
video.description.file,
merged.data.folder
)
# load the merged data
load(paste0(to.data, merged.data.folder, "Master.RData"))
# filter data: minimum net displacement, their duration, the detection frequency and the median step length
trajectory.data.filtered <-
filter_data(
trajectory.data,
filter_min_net_disp,
filter_min_duration,
filter_detection_freq,
filter_median_step_length
)
# summarize trajectory data to individual-based data
morph_mvt <-
summarize_trajectories(
trajectory.data.filtered,
calculate.median = F,
write = T,
to.data,
merged.data.folder
)
# get sample level info
summarize_populations(
trajectory.data.filtered,
morph_mvt,
write = T,
to.data,
merged.data.folder,
video.description.folder,
video.description.file,
total_frames
)
# create overlays for validation
create.subtitle.overlays(
to.data,
traj.data = trajectory.data.filtered,
raw.video.folder,
raw.avi.folder,
temp.overlay.folder,
overlay.folder,
fps,
vid.length = total_frames / fps,
width,
height,
tools.path = tools.path,
overlay.type = "number",
video.format
)
# Create overlays (old method)
create_overlays(
traj.data = trajectory.data.filtered,
to.data = to.data,
merged.data.folder = merged.data.folder,
raw.video.folder = raw.avi.folder,
temp.overlay.folder = "4a_temp_overlays_old/",
overlay.folder = "4_overlays_old/",
width = width,
height = height,
difference.lag = difference.lag,
type = "traj",
predict_spec = F,
contrast.enhancement = 1,
IJ.path = "/home/mendel-himself/bemovi_tools",
memory = memory.alloc,
max.cores = detectCores() - 1,
memory.per.overlay = memory.per.overlay
)
########################################################################
# some cleaning up
#system("rm -r 2_particle_data")
#system("rm -r 3_trajectory_data")
#system("rm -r 4a_temp_overlays")
system("rm -r ijmacs")
########################################################################
To avoid transferring all the data from the powerful computer, I performed species identification on that system and subsequently imported the results into the Rstudio folder on my personal computer. Below is the code utilised for species identification on the powerful computer.
rm(list = ls())
#install.packages("e1071",dependencies = T)
#install.packages("devtools",dependencies = T)
#install_github("pennekampster/bemovi", ref="master")
#library(devtools)
library(bemovi)
library(e1071)
library("here")
library("tidyverse")
time_points_in_experiment = c("t0", "t1", "t2", "t3", "t4", "t5", "t6", "t7")
for (time_point in time_points_in_experiment) {
#Folder names and paths
video.description.folder = "0_video_description/"
video.description.file = "video_description.txt"
merged.data.folder = "5_merged_data/"
monocultures_folder_path = here("biomass_analysis", "training", "")
mixed_cultures_folder_path = here("biomass_analysis", time_point, "")
#Parameters used in the video analysis script
fps = 25
nsv = 5
measured_volume = 34.4
pixel_to_scale = 4.05
filter_min_net_disp = 25
filter_min_duration = 1
filter_detection_freq = 0.1
filter_median_step_length = 3
#Load master dataset of mono-cultures
load(paste0(
monocultures_folder_path,
merged.data.folder,
"Master.RData"
))
trajectory.data_monocultures = trajectory.data
rm(trajectory.data)
#Filter the master data of mono-cultures using the same parameters as in the videos analysis script
trajectory.data_monocultures.filtered = filter_data(
trajectory.data_monocultures,
filter_min_net_disp,
filter_min_duration,
filter_detection_freq,
filter_median_step_length
)
#Go from trajectory data to individuals data
morph_mvt = summarize_trajectories(
data = trajectory.data_monocultures.filtered,
calculate.median = FALSE,
write = TRUE,
to.data = monocultures_folder_path,
merged.data.folder = merged.data.folder
) %>%
mutate(comment = NULL)
training_data = morph_mvt[complete.cases(morph_mvt), ]
svm1 = svm(
factor(species) ~
mean_grey +
sd_grey +
mean_area +
sd_area +
mean_perimeter +
mean_turning +
sd_turning +
sd_perimeter +
mean_major +
sd_major +
mean_minor +
sd_minor +
mean_ar +
sd_ar +
duration +
max_net +
net_disp +
net_speed +
gross_disp +
max_step +
min_step +
sd_step +
sd_gross_speed +
max_gross_speed +
min_gross_speed ,
data = training_data,
probability = T,
na.action = na.pass
)
confusion.matrix = table(svm1$fitted, training_data$species)
confusion.matrix.nd = confusion.matrix
diag(confusion.matrix.nd) = 0
svm1$confusion = cbind(confusion.matrix,
class.error = rowSums(confusion.matrix.nd) / rowSums(confusion.matrix))
print(paste("Confusion matrix of time point", time_point))
print(svm1$confusion)
species.names = unique(trajectory.data_monocultures$species)
load(paste0(
mixed_cultures_folder_path,
merged.data.folder,
"Master.RData"
))
trajectory.data_mixed = trajectory.data
rm(trajectory.data)
trajectory.data_mixed.filtered = filter_data(
trajectory.data_mixed,
filter_min_net_disp,
filter_min_duration,
filter_detection_freq,
filter_median_step_length
)
morph_mvt = summarize_trajectories(
data = trajectory.data_mixed.filtered,
calculate.median = FALSE,
write = TRUE,
to.data = mixed_cultures_folder_path,
merged.data.folder = merged.data.folder
)[, which(colnames(morph_mvt) != "Col_manual")] %>%
mutate(comment = NULL)
data.to.predict = morph_mvt[complete.cases(morph_mvt),]
p.id = predict(object = svm1,
data.to.predict,
type = "response")
data.to.predict$predicted_species = as.character(p.id)
pop.data = summarize_populations(
traj.data = trajectory.data_monocultures.filtered,
sum.data = morph_mvt,
write = TRUE,
to.data = mixed_cultures_folder_path,
merged.data.folder = merged.data.folder,
video.description.folder = video.description.folder,
video.description.file = video.description.file,
total_frame = fps * nsv
)
species.density = function(sample_output,
indiv_predicted,
species_names,
total_frames,
mv = measured_volume) {
samples = unique(indiv_predicted$file)
sp.dens = matrix(0,
nrow(sample_output),
length(species_names))
colnames(sp.dens) = species_names
for (i in 1:length(samples)) {
indiv = subset(indiv_predicted, file == samples[i])
spec = unique(indiv$predicted_species)
for (j in 1:length(spec)) {
all.indiv.sp = subset(indiv,
predicted_species == spec[j])
dens = sum(all.indiv.sp$N_frames) / total_frames / mv
sp.dens[which(sample_output$file == as.character(samples[i])), which(species_names == spec[j])] = dens
}
}
return(cbind(sample_output, sp.dens))
}
output = species.density(
pop.data,
data.to.predict,
species.names,
total_frames = fps * nsv,
mv = measured_volume
)
file_name = paste0("species_ID_", time_point, ".csv")
write.csv(output,
here("biomass_analysis", "species_ID_results", file_name))
rm(output)
}
## Time difference of 1.9 mins
Check that disturbance_global_input is what you set:
print(paste0("Disturbance = ", disturbance_global_input))
## [1] "Disturbance = high"
If you want to change a certain part of the code using the following code in Unix:
#Rmd script
cd /Users/ema/Documents/GitHub/PatchSize/r_files
sed -i '' 's/old_string/new_string/g' *.Rmd
#R script
cd /Users/ema/Documents/GitHub/PatchSize/r_files/functions
sed -i '' 's/old_string/new_string/g' *.R
you want to share a dataset and get a reproducible object, use the following R code:
dput()
The only type of patch where all cultures crashed was small connected to small at high disturbance.